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.StoragesContracts { public interface IEmployeeStorage { EmployeeViewModel? GetElement(EmployeeSearchModel model); EmployeeViewModel? Insert(EmployeeBindingModel model); } }