using Subd_4.BindingModels; using Subd_4.SearchModels; using Subd_4.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Subd_4.BusinessLogicContracts { public interface IEmployeeLogic { List? ReadList(EmployeeSearchModel? model); EmployeeViewModel? ReadElement(EmployeeSearchModel model); bool Create(EmployeeBindingModel model); bool Update(EmployeeBindingModel model); bool Delete(EmployeeBindingModel model); } }