From db07407ffdbaf4538ca9d4f730f3053dc9e3c2e1 Mon Sep 17 00:00:00 2001 From: VictoriaPresnyakova Date: Wed, 3 May 2023 19:23:22 +0400 Subject: [PATCH] StoragesContracts --- .../StoragesContracts/IRouteStorage.cs | 12 ++++++++++++ .../StoragesContracts/IStopStorage.cs | 12 ++++++++++++ .../StoragesContracts/ITransportTypeStorage.cs | 12 ++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 TransportGuideContracts/StoragesContracts/IRouteStorage.cs create mode 100644 TransportGuideContracts/StoragesContracts/IStopStorage.cs create mode 100644 TransportGuideContracts/StoragesContracts/ITransportTypeStorage.cs diff --git a/TransportGuideContracts/StoragesContracts/IRouteStorage.cs b/TransportGuideContracts/StoragesContracts/IRouteStorage.cs new file mode 100644 index 0000000..c2d2cd3 --- /dev/null +++ b/TransportGuideContracts/StoragesContracts/IRouteStorage.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TransportGuideContracts.StoragesContracts +{ + internal class IRouteStorage + { + } +} diff --git a/TransportGuideContracts/StoragesContracts/IStopStorage.cs b/TransportGuideContracts/StoragesContracts/IStopStorage.cs new file mode 100644 index 0000000..2d9a20a --- /dev/null +++ b/TransportGuideContracts/StoragesContracts/IStopStorage.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TransportGuideContracts.StoragesContracts +{ + internal interface IStopStorage + { + } +} diff --git a/TransportGuideContracts/StoragesContracts/ITransportTypeStorage.cs b/TransportGuideContracts/StoragesContracts/ITransportTypeStorage.cs new file mode 100644 index 0000000..7981e4e --- /dev/null +++ b/TransportGuideContracts/StoragesContracts/ITransportTypeStorage.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TransportGuideContracts.StoragesContracts +{ + internal interface ITransportTypeStorage + { + } +}