public ConMotivoInactivacionAgendaCollection FetchByQuery(Query qry) { ConMotivoInactivacionAgendaCollection coll = new ConMotivoInactivacionAgendaCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public ConMotivoInactivacionAgendaCollection FetchAll() { ConMotivoInactivacionAgendaCollection coll = new ConMotivoInactivacionAgendaCollection(); Query qry = new Query(ConMotivoInactivacionAgenda.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public ConMotivoInactivacionAgendaCollection FetchByID(object IdMotivoInactivacion) { ConMotivoInactivacionAgendaCollection coll = new ConMotivoInactivacionAgendaCollection().Where("idMotivoInactivacion", IdMotivoInactivacion).Load(); return(coll); }