コード例 #1
0
        public CrudeFinancialPaymentCardModel CrudeFinancialPaymentCardFetchByFinancialPaymentCardId(System.Guid financialpaymentcardid)
        {
            CrudeFinancialPaymentCardModel financialPaymentCard =
                new CrudeFinancialPaymentCardBusiness().FetchByFinancialPaymentCardId(financialpaymentcardid);

            return(financialPaymentCard);
        }
コード例 #2
0
        public IEnumerable <CrudeFinancialPaymentCardModel> CrudeFinancialPaymentCardFetchByFinancialCurrencyId(System.Guid financialcurrencyid)
        {
            List <CrudeFinancialPaymentCardModel> financialPaymentCard =
                new CrudeFinancialPaymentCardBusiness().FetchByFinancialCurrencyId(financialcurrencyid);

            return(financialPaymentCard);
        }
コード例 #3
0
        public IEnumerable <CrudeFinancialPaymentCardModel> CrudeFinancialPaymentCardFetchAll()
        {
            List <CrudeFinancialPaymentCardModel> financialPaymentCards =
                new CrudeFinancialPaymentCardBusiness().FetchAll();

            return(financialPaymentCards);
        }
コード例 #4
0
        public IEnumerable <CrudeFinancialPaymentCardModel> CrudeFinancialPaymentCardFetchByFinancialCardTypeRcd(System.String financialcardtypercd)
        {
            List <CrudeFinancialPaymentCardModel> financialPaymentCard =
                new CrudeFinancialPaymentCardBusiness().FetchByFinancialCardTypeRcd(financialcardtypercd);

            return(financialPaymentCard);
        }
コード例 #5
0
        public IEnumerable <CrudeFinancialPaymentCardModel> CrudeFinancialPaymentCardFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeFinancialPaymentCardModel> financialPaymentCards =
                new CrudeFinancialPaymentCardBusiness().FetchAllWithLimit(limit);

            return(financialPaymentCards);
        }