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 ConferenceStorage : IConferenceStorage
|
|||
|
{
|
|||
|
public ConferenceViewModel? Delete(ConferenceBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ConferenceViewModel? GetElement(ConferenceSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<ConferenceViewModel> GetFilteredList(ConferenceSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<ConferenceViewModel> GetFullList()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ConferenceViewModel? Insert(ConferenceBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ConferenceViewModel? Update(ConferenceBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|