18 lines
435 B
C#
18 lines
435 B
C#
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);
|
|
}
|
|
}
|