CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BusinessLogicContracts/IEmployeeLogic.cs

20 lines
605 B
C#
Raw Normal View History

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-22 23:00:35 +04:00
bool Add(EmployeeBindingModel model);
bool Update(EmployeeBindingModel model);
bool Delete(EmployeeBindingModel model);
2024-05-19 16:01:45 +04:00
}
}