22 lines
739 B
C#
22 lines
739 B
C#
using SchoolAgainStudyContracts.BindingModel;
|
|
using SchoolAgainStudyContracts.SearchModel;
|
|
using SchoolAgainStudyContracts.ViewModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolAgainStudyContracts.StorageContracts
|
|
{
|
|
public interface IInterestStorage
|
|
{
|
|
List<InterestViewModel> GetFullList();
|
|
List<InterestViewModel> GetFilteredList(InterestSearchModel model);
|
|
InterestViewModel? GetElement(InterestSearchModel model);
|
|
InterestViewModel? Insert(InterestBindingModel model);
|
|
InterestViewModel? Update(InterestBindingModel model);
|
|
InterestViewModel? Delete(InterestBindingModel model);
|
|
}
|
|
}
|