public EtudeHasEspeceViewModel(EtudeViewModel idEtude, EspeceViewModel idEspece, Decimal densiteTotaleEspece)
 {
     Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("en-US");
     this.idEtude             = idEtude;
     this.idEspece            = idEspece;
     this.densiteTotaleEspece = densiteTotaleEspece;
 }
Exemplo n.º 2
0
 public EspeceHasPlageViewModel(EspeceViewModel idEspece, PlageViewModel idPlage, Decimal densite, Decimal populationTotale)
 {
     Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("en-US");
     this.idEspece         = idEspece;
     this.idPlage          = idPlage;
     this.densite          = densite;
     this.populationTotale = populationTotale;
 }
 public EspeceHasZoneViewModel(EspeceViewModel idEspece, ZoneViewModel idZone, int nombreEspeceZone)
 {
     this.idEspece         = idEspece;
     this.idZone           = idZone;
     this.nombreEspeceZone = nombreEspeceZone;
 }