public CrudeFerryTypeRefModel CrudeFerryTypeRefFetchByFerryTypeRcd(System.String ferrytypercd) { CrudeFerryTypeRefModel ferryTypeRef = new CrudeFerryTypeRefBusiness().FetchByFerryTypeRcd(ferrytypercd); return(ferryTypeRef); }
public IEnumerable <CrudeFerryTypeRefModel> CrudeFerryTypeRefFetchAll() { List <CrudeFerryTypeRefModel> ferryTypeRefs = new CrudeFerryTypeRefBusiness().FetchAll(); return(ferryTypeRefs); }
public IEnumerable <CrudeFerryTypeRefModel> CrudeFerryTypeRefFetchAllWithLimit( string limit ) { List <CrudeFerryTypeRefModel> ferryTypeRefs = new CrudeFerryTypeRefBusiness().FetchAllWithLimit(limit); return(ferryTypeRefs); }