コード例 #1
0
        public CrudeServiceFerryModel CrudeServiceFerryFetchByServiceFerryId(System.Guid serviceferryid)
        {
            CrudeServiceFerryModel serviceFerry =
                new CrudeServiceFerryBusiness().FetchByServiceFerryId(serviceferryid);

            return(serviceFerry);
        }
コード例 #2
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchByFinancialCurrencyId(System.Guid financialcurrencyid)
        {
            List <CrudeServiceFerryModel> serviceFerry =
                new CrudeServiceFerryBusiness().FetchByFinancialCurrencyId(financialcurrencyid);

            return(serviceFerry);
        }
コード例 #3
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchAll()
        {
            List <CrudeServiceFerryModel> serviceFerrys =
                new CrudeServiceFerryBusiness().FetchAll();

            return(serviceFerrys);
        }
コード例 #4
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchByFerryId(System.Guid ferryid)
        {
            List <CrudeServiceFerryModel> serviceFerry =
                new CrudeServiceFerryBusiness().FetchByFerryId(ferryid);

            return(serviceFerry);
        }
コード例 #5
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeServiceFerryModel> serviceFerrys =
                new CrudeServiceFerryBusiness().FetchAllWithLimit(limit);

            return(serviceFerrys);
        }