public CrudeFinancialAdjustmentTypeRefModel CrudeFinancialAdjustmentTypeRefFetchByFinancialAdjustmentTypeRcd(System.String financialadjustmenttypercd)
        {
            CrudeFinancialAdjustmentTypeRefModel financialAdjustmentTypeRef =
                new CrudeFinancialAdjustmentTypeRefBusiness().FetchByFinancialAdjustmentTypeRcd(financialadjustmenttypercd);

            return(financialAdjustmentTypeRef);
        }
        public IEnumerable <CrudeFinancialAdjustmentTypeRefModel> CrudeFinancialAdjustmentTypeRefFetchAll()
        {
            List <CrudeFinancialAdjustmentTypeRefModel> financialAdjustmentTypeRefs =
                new CrudeFinancialAdjustmentTypeRefBusiness().FetchAll();

            return(financialAdjustmentTypeRefs);
        }
        public IEnumerable <CrudeFinancialAdjustmentTypeRefModel> CrudeFinancialAdjustmentTypeRefFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFinancialAdjustmentTypeRefModel> financialAdjustmentTypeRefs =
                new CrudeFinancialAdjustmentTypeRefBusiness().FetchAllWithLimit(limit);

            return(financialAdjustmentTypeRefs);
        }