Пример #1
0
        public CrudeCountryModel CrudeCountryFetchByCountryId(System.Guid countryid)
        {
            CrudeCountryModel country =
                new CrudeCountryBusiness().FetchByCountryId(countryid);

            return(country);
        }
Пример #2
0
        public IEnumerable <CrudeCountryModel> CrudeCountryFetchByProductId(System.Guid productid)
        {
            List <CrudeCountryModel> country =
                new CrudeCountryBusiness().FetchByProductId(productid);

            return(country);
        }
Пример #3
0
        public IEnumerable <CrudeCountryModel> CrudeCountryFetchAll()
        {
            List <CrudeCountryModel> countrys =
                new CrudeCountryBusiness().FetchAll();

            return(countrys);
        }
Пример #4
0
        public CrudeCountryModel CrudeCountryFetchByCountryCode(System.String countrycode)
        {
            CrudeCountryModel country =
                new CrudeCountryBusiness().FetchByCountryCode(countrycode);

            return(country);
        }
Пример #5
0
        public IEnumerable <CrudeCountryModel> CrudeCountryFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeCountryModel> countrys =
                new CrudeCountryBusiness().FetchAllWithLimit(limit);

            return(countrys);
        }