maksim
1ddd362ab7
В некоторых файлах, основанных на интерфейсах, стоят заглушки. Создана несколько экранов, которые также являются заглушками.
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
|
|
using EmployeeManagmentContracts.SearchModels;
|
|
using EmployeeManagmentContracts.StoragesContracts;
|
|
using EmployeeManagmentContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EmployeeManagmentDataBaseImplement.Implements
|
|
{
|
|
public class PhisicalPersonStorage : IPhisicalPersonStorage
|
|
{
|
|
public void Delete(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public PhisicalPersonViewModel? GetElement(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<PhisicalPersonViewModel> GetFilteredList(PhisicalPersonSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<PhisicalPersonViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Insert(PhisicalPersonViewModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Update(PhisicalPersonViewModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|