Beispiel #1
0
        public void Edit(int id, int typeId, DateTime paymentDate, double amount, string comment)
        {
            Data.IncomePayment dataIncomePayment;

            dataIncomePayment = new Data.IncomePayment();
            dataIncomePayment.Edit(id, typeId, paymentDate, amount, comment);
            dataIncomePayment.Dispose();
        }
Beispiel #2
0
        public void Delete(int id)
        {
            Data.IncomePayment dataIncomePayment;

            dataIncomePayment = new Data.IncomePayment();
            dataIncomePayment.Delete(id);
            dataIncomePayment.Dispose();
        }
Beispiel #3
0
        public List<IPayment> GetPayments(int year, int week)
        {
            Data.IncomePayment dataIncomePayment;
            List<IPayment> incomePayments;

            dataIncomePayment = new Data.IncomePayment();
            incomePayments = dataIncomePayment.GetPayments(year, week);
            dataIncomePayment.Dispose();

            return incomePayments;
        }
Beispiel #4
0
        public List<IPayment> GetPayments(int? categoryId, int? typeId, DateTime? paymentDateFrom, DateTime? paymentDateTo, double? amountFrom, double? amountTo, string comment)
        {
            Data.IncomePayment dataIncomePayment;
            List<IPayment> incomePayments;
            Nullable<int> lCategoryId, lTypeId;

            dataIncomePayment = new Data.IncomePayment();

            lCategoryId = (categoryId == 0) ? new Nullable<int>() : categoryId;
            lTypeId = (typeId == 0) ? new Nullable<int>() : typeId;

            incomePayments = dataIncomePayment.GetPayments(lCategoryId, lTypeId, paymentDateFrom, paymentDateTo, amountFrom, amountTo, comment);

            dataIncomePayment.Dispose();

            return incomePayments;
        }