Example #1
0
        public CrudeFinancialTaxTypeRefModel CrudeFinancialTaxTypeRefFetchByFinancialTaxTypeRcd(System.String financialtaxtypercd)
        {
            CrudeFinancialTaxTypeRefModel financialTaxTypeRef =
                new CrudeFinancialTaxTypeRefBusiness().FetchByFinancialTaxTypeRcd(financialtaxtypercd);

            return(financialTaxTypeRef);
        }
Example #2
0
        public IEnumerable <CrudeFinancialTaxTypeRefModel> CrudeFinancialTaxTypeRefFetchAll()
        {
            List <CrudeFinancialTaxTypeRefModel> financialTaxTypeRefs =
                new CrudeFinancialTaxTypeRefBusiness().FetchAll();

            return(financialTaxTypeRefs);
        }
Example #3
0
        public IEnumerable <CrudeFinancialTaxTypeRefModel> CrudeFinancialTaxTypeRefFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFinancialTaxTypeRefModel> financialTaxTypeRefs =
                new CrudeFinancialTaxTypeRefBusiness().FetchAllWithLimit(limit);

            return(financialTaxTypeRefs);
        }