コード例 #1
0
ファイル: Payment.cs プロジェクト: PatricioTovar/AHDDManager
        public PaymentMethodCounts GetPayMethodCountsByDateRangeAssocID(DateTime StartDate, DateTime EndDate, int AssociateID)
        {
            PaymentMethodCounts ret = new PaymentMethodCounts(StartDate, EndDate, AssociateID);

            return(ret);
        }
コード例 #2
0
ファイル: Payment.cs プロジェクト: PatricioTovar/AHDDManager
        public PaymentMethodCounts GetPayMethodCountsByDateRange(DateTime StartDate, DateTime EndDate)
        {
            PaymentMethodCounts ret = new PaymentMethodCounts(StartDate, EndDate);

            return(ret);
        }