2024-05-19 16:01:45 +04:00
|
|
|
|
using ElectronicsShopContracts.BindingModels;
|
|
|
|
|
using ElectronicsShopContracts.SearchModels;
|
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.BusinessLogicContracts {
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public interface IEmployeeLogic {
|
|
|
|
|
List<EmployeeViewModel>? ReadList(EmployeeSearchModel model);
|
|
|
|
|
EmployeeViewModel? ReadElemet(EmployeeSearchModel model);
|
2024-05-19 16:01:45 +04:00
|
|
|
|
|
2024-05-26 17:47:24 +04:00
|
|
|
|
bool Create(EmployeeBindingModel model);
|
2024-05-22 23:00:35 +04:00
|
|
|
|
bool Update(EmployeeBindingModel model);
|
|
|
|
|
bool Delete(EmployeeBindingModel model);
|
2024-05-19 16:01:45 +04:00
|
|
|
|
}
|
|
|
|
|
}
|