2024-07-24 13:22:05 +04:00
|
|
|
|
using BeautySalonContracts.BindingModels;
|
|
|
|
|
using BeautySalonContracts.StorageContracts;
|
|
|
|
|
using BeautySalonContracts.ViewModels;
|
2024-07-23 21:32:13 +04:00
|
|
|
|
|
|
|
|
|
namespace BeautySalonDatabaseImplement.Implements
|
|
|
|
|
{
|
|
|
|
|
internal class EmployeeStorage : IEmployeeStorage
|
|
|
|
|
{
|
2024-07-24 13:22:05 +04:00
|
|
|
|
public EmployeeViewModel Deleted(EmployeeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EmployeeViewModel GetElement(EmployeeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<EmployeeViewModel> GetFilteredList(EmployeeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<EmployeeViewModel> GetFullList()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EmployeeViewModel Insert(EmployeeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EmployeeViewModel Update(EmployeeBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2024-07-23 21:32:13 +04:00
|
|
|
|
}
|
|
|
|
|
}
|