Ejemplo n.º 1
0
        public NhaCungCapCollection FetchByQuery(Query qry)
        {
            NhaCungCapCollection coll = new NhaCungCapCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public NhaCungCapCollection FetchAll()
        {
            NhaCungCapCollection coll = new NhaCungCapCollection();
            Query qry = new Query(NhaCungCap.Schema);

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

            return(coll);
        }