Пример #1
0
 public KcbLuotkhamCollection FetchAll()
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection();
     Query qry = new Query(KcbLuotkham.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #2
0
        public KcbLuotkhamCollection FetchByQuery(Query qry)
        {
            KcbLuotkhamCollection coll = new KcbLuotkhamCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #3
0
        public KcbLuotkhamCollection FetchAll()
        {
            KcbLuotkhamCollection coll = new KcbLuotkhamCollection();
            Query qry = new Query(KcbLuotkham.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #4
0
 public KcbLuotkhamCollection FetchByQuery(Query qry)
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #5
0
 public KcbLuotkhamCollection FetchByID(object IdBenhnhan)
 {
     KcbLuotkhamCollection coll = new KcbLuotkhamCollection().Where("id_benhnhan", IdBenhnhan).Load();
     return coll;
 }
Пример #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;
 }