StoragesContracts

This commit is contained in:
VictoriaPresnyakova 2023-05-03 19:23:22 +04:00
parent 585132da4a
commit db07407ffd
3 changed files with 36 additions and 0 deletions

View File

@ -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
{
}
}

View File

@ -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
{
}
}

View File

@ -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
{
}
}