public OtherInsuranceModel(string clientId) { MontantPrestation = new MoneyModel() { Min = 1, Max = 9999999999, MaxLength = 10, AcceptDecimals = true }; DateFinPrestation = DateModel.CreateLastFiveYearsDateModel(); DateEvaluationParUnMedecin = DateModel.CreateLastFiveYearsDateModel(); DateRepriseTravail = DateModel.CreateNeighboringDateModel(); DateMentionConditionConsolidee = DateModel.CreateLastFiveYearsDateModel(); DateDecisionReorientation = DateModel.CreateLastFiveYearsDateModel(); DateDecisionCnesstWsibSaaq = DateModel.CreateLastFiveYearsDateModel(); DateDecisionInapteCnesstWsibSaaq = DateModel.CreateLastFiveYearsDateModel(); LettreInapteCNESSTSAAQCopy = new FileUploadModel(clientId); LettreInapteEmployeurCopy = new FileUploadModel(clientId); RelevePaiementCopy = new FileUploadModel(clientId); LettreFinPrestationCopy = new FileUploadModel(clientId); LettreRepriseEmployeurCopy = new FileUploadModel(clientId); LettreRepriseCNESSTSAAQCopy = new FileUploadModel(clientId); LettreRefusCopy = new FileUploadModel(clientId); }
public PeriodModel(DateModel dateTo, DateModel dateFrom, bool dateToRequired, bool deleteRequired) { DateFrom = dateFrom; DateTo = dateTo; DateToRequired = dateToRequired; DeleteRequired = deleteRequired; }
public InsuredInformation() { BirthDate = DateModel.CreateBirthDateModel(); Address = new AddressModel(); }
public PeriodModel(DateModel dateTo, DateModel dateFrom) : this(dateTo, dateFrom, true, true) { }
public PeriodModel() : this(DateModel.CreateNeighboringDateModel(), DateModel.CreateNeighboringDateModel(), true, true) { }
public PhysicianModel(bool withFirstConsultationDate) { DisplayFirstConsultationDate = withFirstConsultationDate; FirstConsultationDate = DateModel.CreatePastDateModel(); }