forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
20 lines
553 B
C#
20 lines
553 B
C#
using MagicCarpetContracts.DataModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.StoragesContracts;
|
|
|
|
public interface ISaleStorageContract
|
|
{
|
|
List<SaleDataModel> GetList(DateTime? startDate = null, DateTime? endDate = null, string? employeeId = null,
|
|
string? clientId = null, string? tourId = null);
|
|
|
|
SaleDataModel? GetElementById(string id);
|
|
|
|
void AddElement(SaleDataModel saleDataModel);
|
|
|
|
void DelElement(string id);
|
|
} |