2023-03-07 12:47:29 +04:00
|
|
|
|
using SecuritySystemContracts.BindingModels;
|
|
|
|
|
using SecuritySystemContracts.SearchModels;
|
|
|
|
|
using SecuritySystemContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SecuritySystemContracts.StoragesContracts
|
|
|
|
|
{
|
2023-04-23 10:08:28 +04:00
|
|
|
|
public interface ISecurestorage
|
2023-03-07 12:47:29 +04:00
|
|
|
|
{
|
|
|
|
|
List<SecureViewModel> GetFullList();
|
2023-04-23 10:08:28 +04:00
|
|
|
|
List<SecureViewModel> GetFilteredList(SecuresearchModel model);
|
|
|
|
|
SecureViewModel? GetElement(SecuresearchModel model);
|
2023-03-07 12:47:29 +04:00
|
|
|
|
SecureViewModel? Insert(SecureBindingModel model);
|
|
|
|
|
SecureViewModel? Update(SecureBindingModel model);
|
|
|
|
|
SecureViewModel? Delete(SecureBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|