Пример #1
0
        public CrudeProductModel CrudeProductFetchByProductId(System.Guid productid)
        {
            CrudeProductModel product =
                new CrudeProductBusiness().FetchByProductId(productid);

            return(product);
        }
Пример #2
0
        public IEnumerable <CrudeProductModel> CrudeProductFetchByProductBecameId(System.Guid productbecameid)
        {
            List <CrudeProductModel> product =
                new CrudeProductBusiness().FetchByProductBecameId(productbecameid);

            return(product);
        }
Пример #3
0
        public IEnumerable <CrudeProductModel> CrudeProductFetchAll()
        {
            List <CrudeProductModel> products =
                new CrudeProductBusiness().FetchAll();

            return(products);
        }
Пример #4
0
        public CrudeProductModel CrudeProductFetchByProductName(System.String productname)
        {
            CrudeProductModel product =
                new CrudeProductBusiness().FetchByProductName(productname);

            return(product);
        }
Пример #5
0
        public IEnumerable <CrudeProductModel> CrudeProductFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeProductModel> products =
                new CrudeProductBusiness().FetchAllWithLimit(limit);

            return(products);
        }