user
This commit is contained in:
parent
293856939f
commit
9222e0f647
@ -4,7 +4,7 @@ using HardwareShopContracts.ViewModels;
|
||||
|
||||
namespace HardwareShopContracts.StoragesContracts
|
||||
{
|
||||
public interface IUsertorage
|
||||
public interface IUserStorage
|
||||
{
|
||||
List<UserViewModel> GetFullList();
|
||||
|
||||
|
@ -4,18 +4,36 @@ using HardwareShopContracts.ViewModels;
|
||||
|
||||
namespace HardwareShopContracts.StoragesContracts
|
||||
{
|
||||
public interface IUsertorage
|
||||
public class UserStorage : IUserStorage
|
||||
{
|
||||
List<UserViewModel> GetFullList();
|
||||
public UserViewModel? Delete(UserBindingModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
List<UserViewModel> GetFilteredList(UserSearchModel model);
|
||||
public UserViewModel? GetElement(UserSearchModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
UserViewModel? GetElement(UserSearchModel model);
|
||||
public List<UserViewModel> GetFilteredList(UserSearchModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
UserViewModel? Insert(UserBindingModel model);
|
||||
public List<UserViewModel> GetFullList()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
UserViewModel? Update(UserBindingModel model);
|
||||
public UserViewModel? Insert(UserBindingModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
UserViewModel? Delete(UserBindingModel model);
|
||||
public UserViewModel? Update(UserBindingModel model)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user