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