2024-04-18 19:35:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-19 19:30:16 +04:00
|
|
|
|
using UniversityContracts.BindingModels;
|
2024-04-18 19:35:33 +04:00
|
|
|
|
using UniversityContracts.SearchModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2024-04-21 19:12:38 +04:00
|
|
|
|
public interface IPlanOfStudyLogic
|
2024-04-18 19:35:33 +04:00
|
|
|
|
{
|
|
|
|
|
List<PlanOfStudyViewModel>? ReadList(PlanOfStudySearchModel? model);
|
|
|
|
|
PlanOfStudyViewModel? ReadElement(PlanOfStudySearchModel model);
|
|
|
|
|
bool Create(PlanOfStudyBindingModel model);
|
|
|
|
|
bool Update(PlanOfStudyBindingModel model);
|
|
|
|
|
bool Delete(PlanOfStudyBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|