maksim
1ddd362ab7
В некоторых файлах, основанных на интерфейсах, стоят заглушки. Создана несколько экранов, которые также являются заглушками.
36 lines
998 B
C#
36 lines
998 B
C#
using EmployeeManagmentContracts.BindingModels;
|
|
using EmployeeManagmentContracts.BusinessLogicContracts;
|
|
using EmployeeManagmentContracts.SearchModels;
|
|
using EmployeeManagmentContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EmployeeManagmentBusinessLogic.BusinessLogic
|
|
{
|
|
public class PhisicalPersonLogic : IPhisicalPersonLogic
|
|
{
|
|
public void CreateOrUpdate(PhisicalPersonBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Delete(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public PhisicalPersonViewModel? GetPhisicalPersonById(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<PhisicalPersonViewModel> GetPhisicalPersons(PhisicalPersonSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|