Files
myoffice/MyOffice.Data.Repositories/Motion/IMotionCategoryRepository.cs
T
2023-06-17 14:16:09 +03:00

12 lines
340 B
C#

namespace MyOffice.Data.Repositories.Motion;
using Models.Motions;
public interface IMotionCategoryRepository
{
List<MotionCategory> GetAll(Guid userId);
bool Add(MotionCategory accountCategory);
MotionCategory? Get(Guid userId, Guid id);
bool Update(MotionCategory accountCategory);
bool Remove(MotionCategory accountCategory);
}