17 lines
419 B
C#
17 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UniversityContracts.BindingModels;
|
|
using UniversityContracts.ViewModels;
|
|
|
|
namespace UniversityContracts.BusinessLogicContracts
|
|
{
|
|
public interface IEmployeeLogic
|
|
{
|
|
EmployeeViewModel ReadElement(EmployeeSearchModel model);
|
|
bool Create(EmployeeBindingModel model);
|
|
}
|
|
}
|