fix
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user