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