fix
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace MyOffice.Data.Repositories.Motion;
|
||||
|
||||
using Models.Motions;
|
||||
|
||||
public interface IMotionRepository
|
||||
{
|
||||
List<MotionAccount> GetAll(Guid userId);
|
||||
List<MotionAccount> GetByCategory(Guid userId, Guid categoryId);
|
||||
|
||||
MotionAccount? GetByGlobal(Guid userId, Guid globalMotionId);
|
||||
bool Add(MotionAccount motionAccount);
|
||||
bool Update(MotionAccount motionAccount);
|
||||
}
|
||||
Reference in New Issue
Block a user