Exemplo n.º 1
0
 public EtudeViewModel(int id, decimal NbPersonne, string Titre, PlageViewModel PlageEtude, DateTime date_creation, DateTime date_fin)
 {
     this.idEtude = id;
     this.NbPersonneEtudeProperty = NbPersonne;
     this.PlageEtude         = PlageEtude;
     this.TitreEtudeProperty = Titre;
     this.date_creation      = date_creation;
     this.date_fin           = date_fin;
 }
Exemplo n.º 2
0
 public ZoneInvestigationViewModel(int IdZone, EtudeViewModel Etude, PlageViewModel Plage, EtudeViewModel EtudeDate, String NomZone, Decimal Angle1, Decimal Angle2, Decimal Angle3, Decimal Angle4, UsersViewModel Users)
 {
     this.IdZone    = IdZone;
     this.NomZone   = NomZone;
     this.Etude     = Etude;
     this.Plage     = Plage;
     this.EtudeDate = EtudeDate;
     this.Angle1    = Angle1;
     this.Angle2    = Angle2;
     this.Angle3    = Angle3;
     this.Angle4    = Angle4;
     this.Users     = Users;
 }