41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using PolyclinicContracts.BindingModels;
|
|
using PolyclinicContracts.SearchModels;
|
|
using PolyclinicContracts.StoragesContracts;
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
namespace PolyclinicDatabaseImplement.Implements
|
|
{
|
|
public class UserStorage : IUserStorage
|
|
{
|
|
public UserViewModel? Delete(UserBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public UserViewModel? GetElement(UserSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<UserViewModel> GetFilteredList(UserSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<UserViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public UserViewModel? Insert(UserBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public UserViewModel? Update(UserBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|