forked from DavidMakarov/StudentEnrollment
18 lines
641 B
C#
18 lines
641 B
C#
using StudentEnrollmentContracts.BindingModels;
|
|
using StudentEnrollmentContracts.SearchModels;
|
|
using StudentEnrollmentContracts.ViewModels;
|
|
using StudentEnrollmentDataModels.Models;
|
|
|
|
namespace StudentEnrollmentContracts.BusinessLogicContracts
|
|
{
|
|
public interface IExamPointsLogic
|
|
{
|
|
List<ExamPointsViewModel>? ReadList(ExamPointsSearchModel? model);
|
|
ExamPointsViewModel? ReadElement(ExamPointsSearchModel model);
|
|
bool Create(ExamPointsBindingModel model);
|
|
IExamPointsModel Create(ExamPointsBindingModel model, bool returnTypeIsModel);
|
|
bool Update(ExamPointsBindingModel model);
|
|
bool Delete(ExamPointsBindingModel model);
|
|
}
|
|
}
|