19 lines
492 B
C#
19 lines
492 B
C#
using EmployeeManagmentContracts.BindingModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EmployeeManagmentContracts.BusinessLogicContracts
|
|
{
|
|
public interface IEmployeeLogic
|
|
{
|
|
List<EmployeeViewModel> GetEmployees(EmployeeSearchModel model);
|
|
EmployeeViewModel? GetEmployeeById(int id);
|
|
void CreateOrUpdate(EmployeeBindingModel model);
|
|
void Delete(int id);
|
|
}
|
|
|
|
}
|