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