26 lines
957 B
C#
26 lines
957 B
C#
using _0_Framework.Domain;
|
|
using Company.Domain.InstitutionContractAgg;
|
|
|
|
namespace Company.Domain.InstitutionContractContactInfoAgg;
|
|
|
|
public class InstitutionContractContactInfo : EntityBase
|
|
{
|
|
|
|
public InstitutionContractContactInfo(string phoneType, string position, string phoneNumber, string fnameLname, long institutionContractId, bool sendSms)
|
|
{
|
|
PhoneType = phoneType;
|
|
Position = position;
|
|
PhoneNumber = phoneNumber;
|
|
FnameLname = fnameLname;
|
|
InstitutionContractId = institutionContractId;
|
|
SendSms = sendSms;
|
|
}
|
|
|
|
public string PhoneType { get; private set; }
|
|
public long InstitutionContractId { get; private set; }
|
|
public string Position { get; private set; }
|
|
public string PhoneNumber { get; private set; }
|
|
public string FnameLname { get; private set; }
|
|
public bool SendSms { get; private set; }
|
|
public InstitutionContract InstitutionContracts { get; set; }
|
|
} |