21 lines
599 B
C#
21 lines
599 B
C#
using SchoolScheduleContracts.BindingModels;
|
|
using SchoolScheduleContracts.SearchModels;
|
|
using SchoolScheduleContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolScheduleContracts.BusinessLogicsContracts
|
|
{
|
|
public interface ISubjectLogic
|
|
{
|
|
List<SubjectViewModel>? ReadList(SubjectSearchModel? model);
|
|
SubjectViewModel? ReadElement(SubjectSearchModel model);
|
|
bool Create(SubjectBindingModel model);
|
|
bool Update(SubjectBindingModel model);
|
|
bool Delete(SubjectBindingModel model);
|
|
}
|
|
}
|