25 lines
630 B
C#
25 lines
630 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using TaskTrackerContracts.BindingModels;
|
|||
|
using TaskTrackerContracts.SearchModels;
|
|||
|
using TaskTrackerContracts.ViewModels;
|
|||
|
|
|||
|
namespace TaskTrackerContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IStudentLogic
|
|||
|
{
|
|||
|
List<StudentViewModel>? ReadList(StudentSearchModel? model);
|
|||
|
|
|||
|
StudentViewModel? ReadElement(StudentSearchModel model);
|
|||
|
|
|||
|
bool Create(StudentBindingModel model);
|
|||
|
|
|||
|
bool Update(StudentBindingModel model);
|
|||
|
|
|||
|
bool Delete(StudentBindingModel model);
|
|||
|
}
|
|||
|
}
|