2023-04-04 14:01:40 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityContracts.BindingModels;
|
2023-04-07 17:34:20 +04:00
|
|
|
|
using UniversityContracts.SearchModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
2023-04-04 14:01:40 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IEducationStatusLogic
|
|
|
|
|
{
|
|
|
|
|
bool Create(EducationStatusBindingModel model);
|
|
|
|
|
bool Update(EducationStatusBindingModel model);
|
|
|
|
|
bool Delete(EducationStatusBindingModel model);
|
|
|
|
|
List<EducationStatusViewModel>? ReadList(EducationStatusSearchModel? model);
|
|
|
|
|
EducationStatusViewModel? ReadElement(EducationStatusSearchModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|