Ejemplo n.º 1
0
 public KcbLuotkhamCollection FetchAll()
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection();
     Query qry = new Query(KcbLuotkham.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
        public KcbLuotkhamCollection FetchByQuery(Query qry)
        {
            KcbLuotkhamCollection coll = new KcbLuotkhamCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public KcbLuotkhamCollection FetchAll()
        {
            KcbLuotkhamCollection coll = new KcbLuotkhamCollection();
            Query qry = new Query(KcbLuotkham.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 4
0
 public KcbLuotkhamCollection FetchByQuery(Query qry)
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 5
0
 public KcbLuotkhamCollection FetchByID(object IdBenhnhan)
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection().Where("id_benhnhan", IdBenhnhan).Load();
     return coll;
 }
Ejemplo n.º 6
0
        public KcbLuotkhamCollection FetchByID(object MaLuotkham)
        {
            KcbLuotkhamCollection coll = new KcbLuotkhamCollection().Where("ma_luotkham", MaLuotkham).Load();

            return(coll);
        }
 public KcbLuotkhamCollection FetchByID(object MaLuotkham)
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection().Where("ma_luotkham", MaLuotkham).Load();
     return coll;
 }