Example #1
0
        public CrudeFinancialAdjustmentModel CrudeFinancialAdjustmentFetchByFinancialAdjustmentId(System.Guid financialadjustmentid)
        {
            CrudeFinancialAdjustmentModel financialAdjustment =
                new CrudeFinancialAdjustmentBusiness().FetchByFinancialAdjustmentId(financialadjustmentid);

            return(financialAdjustment);
        }
Example #2
0
        public IEnumerable <CrudeFinancialAdjustmentModel> CrudeFinancialAdjustmentFetchByFinancialCurrencyId(System.Guid financialcurrencyid)
        {
            List <CrudeFinancialAdjustmentModel> financialAdjustment =
                new CrudeFinancialAdjustmentBusiness().FetchByFinancialCurrencyId(financialcurrencyid);

            return(financialAdjustment);
        }
Example #3
0
        public IEnumerable <CrudeFinancialAdjustmentModel> CrudeFinancialAdjustmentFetchAll()
        {
            List <CrudeFinancialAdjustmentModel> financialAdjustments =
                new CrudeFinancialAdjustmentBusiness().FetchAll();

            return(financialAdjustments);
        }
Example #4
0
        public IEnumerable <CrudeFinancialAdjustmentModel> CrudeFinancialAdjustmentFetchByFinancialAdjustmentTypeRcd(System.String financialadjustmenttypercd)
        {
            List <CrudeFinancialAdjustmentModel> financialAdjustment =
                new CrudeFinancialAdjustmentBusiness().FetchByFinancialAdjustmentTypeRcd(financialadjustmenttypercd);

            return(financialAdjustment);
        }
Example #5
0
        public IEnumerable <CrudeFinancialAdjustmentModel> CrudeFinancialAdjustmentFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFinancialAdjustmentModel> financialAdjustments =
                new CrudeFinancialAdjustmentBusiness().FetchAllWithLimit(limit);

            return(financialAdjustments);
        }