public CrudeFinancialPaymentAccountingModel CrudeFinancialPaymentAccountingFetchByFinancialPaymentAccountingId(System.Guid financialpaymentaccountingid)
        {
            CrudeFinancialPaymentAccountingModel financialPaymentAccounting =
                new CrudeFinancialPaymentAccountingBusiness().FetchByFinancialPaymentAccountingId(financialpaymentaccountingid);

            return(financialPaymentAccounting);
        }
        public IEnumerable <CrudeFinancialPaymentAccountingModel> CrudeFinancialPaymentAccountingFetchAll()
        {
            List <CrudeFinancialPaymentAccountingModel> financialPaymentAccountings =
                new CrudeFinancialPaymentAccountingBusiness().FetchAll();

            return(financialPaymentAccountings);
        }
        public IEnumerable <CrudeFinancialPaymentAccountingModel> CrudeFinancialPaymentAccountingFetchByFinancialCurrencyId(System.Guid financialcurrencyid)
        {
            List <CrudeFinancialPaymentAccountingModel> financialPaymentAccounting =
                new CrudeFinancialPaymentAccountingBusiness().FetchByFinancialCurrencyId(financialcurrencyid);

            return(financialPaymentAccounting);
        }
        public IEnumerable <CrudeFinancialPaymentAccountingModel> CrudeFinancialPaymentAccountingFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFinancialPaymentAccountingModel> financialPaymentAccountings =
                new CrudeFinancialPaymentAccountingBusiness().FetchAllWithLimit(limit);

            return(financialPaymentAccountings);
        }