refactoring
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace MyOffice.Data.Repositories.Item;
|
||||
|
||||
using MyOffice.Data.Models.Items;
|
||||
|
||||
public interface IItemGlobalRepository
|
||||
{
|
||||
ItemGlobal? Get(Guid id);
|
||||
ItemGlobal? GetByName(string name);
|
||||
bool Add(ItemGlobal itemGlobal);
|
||||
}
|
||||
Reference in New Issue
Block a user