示例#1
0
        public CrudeFerryTypeRefModel CrudeFerryTypeRefFetchByFerryTypeRcd(System.String ferrytypercd)
        {
            CrudeFerryTypeRefModel ferryTypeRef =
                new CrudeFerryTypeRefBusiness().FetchByFerryTypeRcd(ferrytypercd);

            return(ferryTypeRef);
        }
示例#2
0
        public IEnumerable <CrudeFerryTypeRefModel> CrudeFerryTypeRefFetchAll()
        {
            List <CrudeFerryTypeRefModel> ferryTypeRefs =
                new CrudeFerryTypeRefBusiness().FetchAll();

            return(ferryTypeRefs);
        }
示例#3
0
        public IEnumerable <CrudeFerryTypeRefModel> CrudeFerryTypeRefFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFerryTypeRefModel> ferryTypeRefs =
                new CrudeFerryTypeRefBusiness().FetchAllWithLimit(limit);

            return(ferryTypeRefs);
        }