Files
myoffice/MyOffice.Data.Repositories/Item/IItemCategoryRepository.cs
T
2023-06-22 10:01:27 +03:00

12 lines
338 B
C#

namespace MyOffice.Data.Repositories.Item;
using MyOffice.Data.Models.Items;
public interface IItemCategoryRepository
{
List<ItemCategory> GetAll(Guid userId);
bool Add(ItemCategory accountCategory);
ItemCategory? Get(Guid userId, Guid id);
bool Update(ItemCategory accountCategory);
bool Remove(ItemCategory accountCategory);
}