fix
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace MyOffice.Data.Repositories.Account;
|
||||
|
||||
using Models.Accounts;
|
||||
|
||||
public interface IAccountCategoryRepository
|
||||
{
|
||||
List<AccountCategory> GetAll(Guid userId);
|
||||
bool Add(AccountCategory accountCategory);
|
||||
AccountCategory? Get(Guid userId, Guid id);
|
||||
bool Update(AccountCategory accountCategory);
|
||||
bool Remove(AccountCategory accountCategory);
|
||||
}
|
||||
Reference in New Issue
Block a user