using EmployeeManagmentContracts.BindingModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EmployeeManagmentContracts.BusinessLogicContracts { public interface IEmployeeLogic { List GetEmployees(EmployeeSearchModel model); EmployeeViewModel? GetEmployeeById(int id); void CreateOrUpdate(EmployeeBindingModel model); void Delete(int id); } }