forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
19 lines
645 B
C#
19 lines
645 B
C#
using MagicCarpetContracts.AdapterContracts.OperationResponses;
|
|
using MagicCarpetContracts.BindingModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.AdapterContracts;
|
|
|
|
public interface IAgencyAdapter
|
|
{
|
|
AgencyOperationResponse GetAllComponents();
|
|
AgencyOperationResponse GetComponentByData(string data);
|
|
AgencyOperationResponse InsertComponent(AgencyBindingModel warehouseDataModel);
|
|
AgencyOperationResponse UpdateComponent(AgencyBindingModel warehouseDataModel);
|
|
AgencyOperationResponse DeleteComponent(string id);
|
|
}
|