public void UpdateCategory(IncomeCategory category) { _repository.Category.Update(category); }
//Category public void AddCategory(IncomeCategory category) { _repository.Category.Add(category); }
public void DeleteCategory(IncomeCategory category) { _repository.Category.Delete(category); }