Esempio n. 1
0
 public vETAPAS Get(string ID)
 {
     using (ctx = new Entities())
     {
         vETAPAS r = new vETAPAS();
         ETAPAS b = ctx.ETAPAS.Where(t => t.COD_ETA == ID).FirstOrDefault();
         Mapper.Map(b, r);
         return r;
     }
 }
Esempio n. 2
0
 public ByARpt Update(vETAPAS Reg)
 {
     cmdUpdate o = new cmdUpdate();
     o.oDto = Reg;
     return o.Enviar();
 }
Esempio n. 3
0
 public ByARpt Insert(vETAPAS Reg)
 {
     cmdInsert o = new cmdInsert();
     o.oDto = Reg;
     return o.Enviar();
 }
Esempio n. 4
0
 public ByARpt Update(vETAPAS Reg)
 {
     EtapasBLL o = new EtapasBLL();
     return o.Update(Reg);
 }
Esempio n. 5
0
 public ByARpt Insert(vETAPAS Reg)
 {
     EtapasBLL o = new EtapasBLL();
     return o.Insert(Reg);
 }