public ProgramareInmormantareRequest(string nume, string prenume, string cnp, int religionId, int mormantId, DateTime date, List <ActeModel> acte)
 {
     this.model            = new InmormantareModel();
     model.Data            = date;
     model.Decedat         = new DecedatModel();
     model.Decedat.Cnp     = cnp;
     model.Decedat.Nume    = nume;
     model.Decedat.Prenume = prenume;
     model.Decedat.Acte    = acte;
     model.MormantId       = mormantId;
     model.ReligieId       = religionId;
 }
 public ProgramareInmormantareRequest(InmormantareModel model)
 {
     this.model = model;
 }