public CrudeServiceFerryModel CrudeServiceFerryFetchByServiceFerryId(System.Guid serviceferryid) { CrudeServiceFerryModel serviceFerry = new CrudeServiceFerryBusiness().FetchByServiceFerryId(serviceferryid); return(serviceFerry); }
public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchByFinancialCurrencyId(System.Guid financialcurrencyid) { List <CrudeServiceFerryModel> serviceFerry = new CrudeServiceFerryBusiness().FetchByFinancialCurrencyId(financialcurrencyid); return(serviceFerry); }
public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchAll() { List <CrudeServiceFerryModel> serviceFerrys = new CrudeServiceFerryBusiness().FetchAll(); return(serviceFerrys); }
public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchByFerryId(System.Guid ferryid) { List <CrudeServiceFerryModel> serviceFerry = new CrudeServiceFerryBusiness().FetchByFerryId(ferryid); return(serviceFerry); }
public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchAllWithLimit( string limit ) { List <CrudeServiceFerryModel> serviceFerrys = new CrudeServiceFerryBusiness().FetchAllWithLimit(limit); return(serviceFerrys); }