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 GetPhisicalPersons(PhisicalPersonSearchModel model) { throw new NotImplementedException(); } } }