ISEbd-22_CourseWork_School/School/SchoolContracts/StoragesContracts/IAccountStorage.cs

15 lines
453 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
using SchoolContracts.SearchModels;
using SchoolContracts.BindingModels;
using SchoolContracts.ViewModels;
namespace SchoolContracts.StoragesContracts
{
public interface IAccountStorage
{
List<AccountViewModel> GetFullList();
List<AccountViewModel> GetFilteredList(AccountSearchModel model);
AccountViewModel? GetElement(AccountSearchModel model);
AccountViewModel? Insert(AccountBindingModel model);
}
}