2024-07-24 13:22:05 +04:00
|
|
|
|
|
|
|
|
|
using BeautySalonContracts.BindingModels;
|
2024-07-24 21:04:21 +03:00
|
|
|
|
using BeautySalonContracts.SearchModels;
|
2024-07-24 13:22:05 +04:00
|
|
|
|
using BeautySalonContracts.StorageContracts;
|
|
|
|
|
using BeautySalonContracts.ViewModels;
|
2024-07-23 21:32:13 +04:00
|
|
|
|
|
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
|
|
|
{
|
|
|
|
|
internal class VisitStorage : IVisitStorage
|
|
|
|
|
{
|
2024-07-24 13:22:05 +04:00
|
|
|
|
public VisitViewModel Deleted(VisitBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-24 21:04:21 +03:00
|
|
|
|
public VisitViewModel GetElement(VisitSearchModel model)
|
2024-07-24 13:22:05 +04:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-24 21:04:21 +03:00
|
|
|
|
public List<VisitViewModel> GetFilteredList(VisitSearchModel model)
|
2024-07-24 13:22:05 +04:00
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
}
|
2024-07-23 21:32:13 +04:00
|
|
|
|
}
|
|
|
|
|
}
|