|
|
|
@ -10,13 +10,14 @@ namespace espacecollab.backend.infrastructure.sql.dtos |
|
|
|
|
public DateTime RealEndingDate { get; set; } |
|
|
|
|
public string Comment { get; set; } |
|
|
|
|
public EnumIssue Issue { get; set; } |
|
|
|
|
public Guid CollaborateurId { get; set; } |
|
|
|
|
|
|
|
|
|
[ExcludeFromCodeCoverage] |
|
|
|
|
private PeriodeEssaiSqlDto() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public PeriodeEssaiSqlDto(Guid id, DateTime startingDate, DateTime plannedEndingDate, DateTime realEndingDate, string comment, EnumIssue issue) |
|
|
|
|
public PeriodeEssaiSqlDto(Guid id, DateTime startingDate, DateTime plannedEndingDate, DateTime realEndingDate, string comment, EnumIssue issue, Guid collaborateurId) |
|
|
|
|
{ |
|
|
|
|
Id = id; |
|
|
|
|
StartingDate = startingDate; |
|
|
|
@ -24,6 +25,7 @@ namespace espacecollab.backend.infrastructure.sql.dtos |
|
|
|
|
RealEndingDate = realEndingDate; |
|
|
|
|
Comment = comment; |
|
|
|
|
Issue = issue; |
|
|
|
|
CollaborateurId = collaborateurId; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|