示例#1
0
        public NhaCungCapCollection FetchByQuery(Query qry)
        {
            NhaCungCapCollection coll = new NhaCungCapCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public NhaCungCapCollection FetchAll()
        {
            NhaCungCapCollection coll = new NhaCungCapCollection();
            Query qry = new Query(NhaCungCap.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public NhaCungCapCollection FetchByID(object MaNCC)
        {
            NhaCungCapCollection coll = new NhaCungCapCollection().Where("MaNCC", MaNCC).Load();

            return(coll);
        }