25 lines
932 B
C#
25 lines
932 B
C#
using _0_Framework.Domain;
|
|
|
|
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
|
|
|
public class InstitutionContractContactInfoTemp : EntityBase
|
|
{
|
|
public InstitutionContractContactInfoTemp(string phoneType, string position, string phoneNumber,
|
|
string fullName, long institutionContractTempId, bool sendSms)
|
|
{
|
|
PhoneType = phoneType;
|
|
Position = position;
|
|
PhoneNumber = phoneNumber;
|
|
FullName = fullName;
|
|
InstitutionContractTempId = institutionContractTempId;
|
|
SendSms = sendSms;
|
|
}
|
|
|
|
public string PhoneType { get; private set; }
|
|
public long InstitutionContractTempId { get; private set; }
|
|
public string Position { get; private set; }
|
|
public string PhoneNumber { get; private set; }
|
|
public string FullName { get; private set; }
|
|
public bool SendSms { get; private set; }
|
|
public InstitutionContractTemp InstitutionContractTemp { get; set; }
|
|
} |