2024-04-28 20:20:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-28 20:43:33 +04:00
|
|
|
|
using BankContracts.BindingModels;
|
|
|
|
|
using BankContracts.SearchModels;
|
|
|
|
|
using BankContracts.ViewModels;
|
2024-04-28 20:20:37 +04:00
|
|
|
|
|
|
|
|
|
namespace BankContracts.BusinessLogicContracts
|
|
|
|
|
{
|
2024-04-28 20:43:33 +04:00
|
|
|
|
public interface IEmployeeLogic
|
2024-04-28 20:20:37 +04:00
|
|
|
|
{
|
2024-04-28 20:43:33 +04:00
|
|
|
|
EmployeeViewModel ReadElement(EmployeeSearchModel model);
|
|
|
|
|
bool Create(EmployeeBindingModel model);
|
2024-04-28 20:20:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|