public CrudeCountryModel CrudeCountryFetchByCountryId(System.Guid countryid) { CrudeCountryModel country = new CrudeCountryBusiness().FetchByCountryId(countryid); return(country); }
public IEnumerable <CrudeCountryModel> CrudeCountryFetchByProductId(System.Guid productid) { List <CrudeCountryModel> country = new CrudeCountryBusiness().FetchByProductId(productid); return(country); }
public IEnumerable <CrudeCountryModel> CrudeCountryFetchAll() { List <CrudeCountryModel> countrys = new CrudeCountryBusiness().FetchAll(); return(countrys); }
public CrudeCountryModel CrudeCountryFetchByCountryCode(System.String countrycode) { CrudeCountryModel country = new CrudeCountryBusiness().FetchByCountryCode(countrycode); return(country); }
public IEnumerable <CrudeCountryModel> CrudeCountryFetchAllWithLimit( string limit ) { List <CrudeCountryModel> countrys = new CrudeCountryBusiness().FetchAllWithLimit(limit); return(countrys); }