17 lines
578 B
C#
17 lines
578 B
C#
|
using EkzamenContracts.BindingModels;
|
|||
|
using EkzamenContracts.SearchModels;
|
|||
|
using EkzamenContracts.ViewModels;
|
|||
|
|
|||
|
namespace EkzamenContracts.StoragesContract
|
|||
|
{
|
|||
|
public interface IStudentStorage
|
|||
|
{
|
|||
|
List<StudentViewModel> GetFullList();
|
|||
|
List<StudentViewModel> GetFilteredList(StudentSearchModel model);
|
|||
|
StudentViewModel? GetElement(StudentSearchModel model);
|
|||
|
StudentViewModel? Insert(StudentBindingModel model);
|
|||
|
StudentViewModel? Update(StudentBindingModel model);
|
|||
|
StudentViewModel? Delete(StudentBindingModel model);
|
|||
|
}
|
|||
|
}
|