Example #1
0
 public void UpdateCategory(IncomeCategory category)
 {
     _repository.Category.Update(category);
 }
Example #2
0
 //Category
 public void AddCategory(IncomeCategory category)
 {
     _repository.Category.Add(category);
 }
Example #3
0
 public void DeleteCategory(IncomeCategory category)
 {
     _repository.Category.Delete(category);
 }