public CategoryController(
     ICategoryRepository categoryRepository,
     IPaymentPerMonthRepository paymentPerMonthRepository,
     ITypeOfPaymentRepository typeOfPaymentRepository)
 {
     _categoryRepository      = categoryRepository;
     _typeOfPaymentRepository = typeOfPaymentRepository;
 }
Example #2
0
 public TypeOfPaymentController(ITypeOfPaymentRepository typeOfPaymentRepository)
 {
     _typeOfPaymentRepository = typeOfPaymentRepository;
 }