2023-10-28 09:06:35 +04:00
|
|
|
|
using UniversityContracts.BindingModels;
|
|
|
|
|
using UniversityContracts.SearchModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IStudentLogic
|
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
List<StudentViewModel> Read(StudentBindingModel model);
|
|
|
|
|
void CreateOrUpdate(StudentBindingModel model);
|
|
|
|
|
void Delete(StudentBindingModel model);
|
2023-10-28 09:06:35 +04:00
|
|
|
|
}
|
|
|
|
|
}
|