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