Esempio n. 1
0
        public CrudeProductModel CrudeProductFetchByProductId(System.Guid productid)
        {
            CrudeProductModel product =
                new CrudeProductBusiness().FetchByProductId(productid);

            return(product);
        }
Esempio n. 2
0
        public IEnumerable <CrudeProductModel> CrudeProductFetchByProductBecameId(System.Guid productbecameid)
        {
            List <CrudeProductModel> product =
                new CrudeProductBusiness().FetchByProductBecameId(productbecameid);

            return(product);
        }
Esempio n. 3
0
        public IEnumerable <CrudeProductModel> CrudeProductFetchAll()
        {
            List <CrudeProductModel> products =
                new CrudeProductBusiness().FetchAll();

            return(products);
        }
Esempio n. 4
0
        public CrudeProductModel CrudeProductFetchByProductName(System.String productname)
        {
            CrudeProductModel product =
                new CrudeProductBusiness().FetchByProductName(productname);

            return(product);
        }
Esempio n. 5
0
        public IEnumerable <CrudeProductModel> CrudeProductFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeProductModel> products =
                new CrudeProductBusiness().FetchAllWithLimit(limit);

            return(products);
        }