17 lines
591 B
C#
17 lines
591 B
C#
|
using UniversityContracts.BindingModels;
|
|||
|
using UniversityContracts.SearchModels;
|
|||
|
using UniversityContracts.ViewModels;
|
|||
|
|
|||
|
namespace UniversityContracts.StoragesContracts
|
|||
|
{
|
|||
|
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);
|
|||
|
}
|
|||
|
}
|