|
|
|
@ -21,7 +21,7 @@ public class CollaborateurSqlDto : IGenericIdSqlDto |
|
|
|
|
public string Telephone { get; set; } |
|
|
|
|
public string PersonalMail { get; set; } |
|
|
|
|
public string ApsideMail { get; set; } |
|
|
|
|
public DateTime ResignationDate { get; set; } |
|
|
|
|
public DateTime? ResignationDate { get; set; } |
|
|
|
|
public int ReferrerId { get; set; } |
|
|
|
|
public int BusinessUnitId { get; set; } |
|
|
|
|
|
|
|
|
@ -36,7 +36,7 @@ public class CollaborateurSqlDto : IGenericIdSqlDto |
|
|
|
|
ApsideMail = string.Empty; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public CollaborateurSqlDto(int id, string name, string firstName, DateTime birthDate, EnumGenreSql gender, EnumStatutSql status, int childrenNumber, string address, string telephone, string personalMail, string apsideMail, DateTime resignationDate, int referrerId, int businessUnitId) |
|
|
|
|
public CollaborateurSqlDto(int id, string name, string firstName, DateTime birthDate, EnumGenreSql gender, EnumStatutSql status, int childrenNumber, string address, string telephone, string personalMail, string apsideMail, DateTime? resignationDate, int referrerId, int businessUnitId) |
|
|
|
|
{ |
|
|
|
|
Id = id; |
|
|
|
|
Name = name; |
|
|
|
|