42 lines
911 B
C#
42 lines
911 B
C#
|
|
using BeautySalonContracts.BindingModels;
|
|
using BeautySalonContracts.SearchModels;
|
|
using BeautySalonContracts.StorageContracts;
|
|
using BeautySalonContracts.ViewModels;
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
{
|
|
internal class VisitStorage : IVisitStorage
|
|
{
|
|
public VisitViewModel Delete(VisitBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public VisitViewModel GetElement(VisitSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<VisitViewModel> GetFilteredList(VisitSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<VisitViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public VisitViewModel Insert(VisitBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public VisitViewModel Update(VisitBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|