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