41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
|
using HotelContracts.BindingModels;
|
|||
|
using HotelContracts.SearchModels;
|
|||
|
using HotelContracts.StoragesContracts;
|
|||
|
using HotelContracts.ViewModels;
|
|||
|
|
|||
|
namespace HotelDataBaseImplement.Implemets
|
|||
|
{
|
|||
|
public class OrganiserStorage : IOrganiserStorage
|
|||
|
{
|
|||
|
public OrganiserViewModel? Delete(OrganiserBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public OrganiserViewModel? GetElement(OrganiserSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<OrganiserViewModel> GetFilteredList(OrganiserSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<OrganiserViewModel> GetFullList()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public OrganiserViewModel? Insert(OrganiserBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public OrganiserViewModel? Update(OrganiserBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|