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; } }
public ByARpt Update(vETAPAS Reg) { cmdUpdate o = new cmdUpdate(); o.oDto = Reg; return o.Enviar(); }
public ByARpt Insert(vETAPAS Reg) { cmdInsert o = new cmdInsert(); o.oDto = Reg; return o.Enviar(); }
public ByARpt Update(vETAPAS Reg) { EtapasBLL o = new EtapasBLL(); return o.Update(Reg); }
public ByARpt Insert(vETAPAS Reg) { EtapasBLL o = new EtapasBLL(); return o.Insert(Reg); }