示例#1
0
        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);
        }
示例#2
0
 public PeriodModel(DateModel dateTo, DateModel dateFrom, bool dateToRequired, bool deleteRequired)
 {
     DateFrom       = dateFrom;
     DateTo         = dateTo;
     DateToRequired = dateToRequired;
     DeleteRequired = deleteRequired;
 }
示例#3
0
 public InsuredInformation()
 {
     BirthDate = DateModel.CreateBirthDateModel();
     Address   = new AddressModel();
 }
示例#4
0
 public PeriodModel(DateModel dateTo, DateModel dateFrom) : this(dateTo, dateFrom, true, true)
 {
 }
示例#5
0
 public PeriodModel() : this(DateModel.CreateNeighboringDateModel(), DateModel.CreateNeighboringDateModel(), true, true)
 {
 }
示例#6
0
        public PhysicianModel(bool withFirstConsultationDate)
        {
            DisplayFirstConsultationDate = withFirstConsultationDate;

            FirstConsultationDate = DateModel.CreatePastDateModel();
        }