LabSubd/Subd/Contracts/Storage/IVoyageStorage.cs
2023-05-08 15:15:10 +03:00

25 lines
630 B
C#

using Contracts.BindingModels;
using Contracts.SearchModel;
using Contracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.Storage
{
public interface IVoyageStorage
{
List<VoyageVM> GetFullList();
List<VoyageVM> GetFilteredList(VoyageSM model);
VoyageVM? GetElement(VoyageSM model);
VoyageVM? Insert(VoyageBM model);
VoyageVM? Delete(VoyageBM model);
public List<ReportHuman> ReportHuman();
public List<ReportCompany> ReportCompany();
}
}