12 lines
338 B
C#
12 lines
338 B
C#
using SchoolContracts.BindingModels;
|
|
using SchoolContracts.SearchModels;
|
|
using SchoolContracts.ViewModels;
|
|
|
|
namespace SchoolContracts.BusinessLogicContracts
|
|
{
|
|
public interface IImplementerLogic
|
|
{
|
|
ImplementerViewModel ReadElement(ImplementerSearchModel model);
|
|
bool Create(ImplementerBindingModel model);
|
|
}
|
|
} |