19 lines
545 B
C#
19 lines
545 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UniversityContracts.BindingModels;
|
|||
|
|
|||
|
namespace UniversityContracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
internal interface IStudentLogic
|
|||
|
{
|
|||
|
bool Create(StudentBindingModel model);
|
|||
|
bool Update(StudentBindingModel model);
|
|||
|
bool Delete(StudentBindingModel model);
|
|||
|
List<StudentViewModel>? ReadList(StudentSearchModel? model);
|
|||
|
StudentViewModel? ReadElement(StudentSearchModel model);
|
|||
|
}
|
|||
|
}
|