Exemplo n.º 1
0
        public CrudeServiceFerryModel CrudeServiceFerryFetchByServiceFerryId(System.Guid serviceferryid)
        {
            CrudeServiceFerryModel serviceFerry =
                new CrudeServiceFerryBusiness().FetchByServiceFerryId(serviceferryid);

            return(serviceFerry);
        }
Exemplo n.º 2
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchByFinancialCurrencyId(System.Guid financialcurrencyid)
        {
            List <CrudeServiceFerryModel> serviceFerry =
                new CrudeServiceFerryBusiness().FetchByFinancialCurrencyId(financialcurrencyid);

            return(serviceFerry);
        }
Exemplo n.º 3
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchAll()
        {
            List <CrudeServiceFerryModel> serviceFerrys =
                new CrudeServiceFerryBusiness().FetchAll();

            return(serviceFerrys);
        }
Exemplo n.º 4
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchByFerryId(System.Guid ferryid)
        {
            List <CrudeServiceFerryModel> serviceFerry =
                new CrudeServiceFerryBusiness().FetchByFerryId(ferryid);

            return(serviceFerry);
        }
Exemplo n.º 5
0
        public IEnumerable <CrudeServiceFerryModel> CrudeServiceFerryFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeServiceFerryModel> serviceFerrys =
                new CrudeServiceFerryBusiness().FetchAllWithLimit(limit);

            return(serviceFerrys);
        }