public void LoadFromInfo(NutrienteEntityInfo EntityInfo)
 {
     this.Nombre     = EntityInfo.Nombre;
     this.UDMId      = EntityInfo.UDMId;
     this.PerteneceA = EntityInfo.PerteneceA;
     this.Estado     = EntityInfo.Estado;
 }
 public NutrienteEntityInsert(NutrienteEntityInfo EntityInfo)
 {
     this.Nombre     = EntityInfo.Nombre;
     this.UDMId      = EntityInfo.UDMId;
     this.PerteneceA = EntityInfo.PerteneceA;
     this.Estado     = EntityInfo.Estado;
 }
Beispiel #3
0
 public NutrienteEntityUpdate(NutrienteEntityInfo EntityInfo)
 {
     this.Clear();
     this.Nombre     = EntityInfo.Nombre;
     this.UDMId      = EntityInfo.UDMId;
     this.PerteneceA = EntityInfo.PerteneceA;
     this.Estado     = EntityInfo.Estado;
 }