forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
18 lines
603 B
C#
18 lines
603 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 ISuppliesAdapter
|
|
{
|
|
SuppliesOperationResponse GetAllComponents();
|
|
SuppliesOperationResponse GetComponentByData(string data);
|
|
SuppliesOperationResponse InsertComponent(SuppliesBindingModel componentDataModel);
|
|
SuppliesOperationResponse UpdateComponent(SuppliesBindingModel componentDataModel);
|
|
}
|