поправки

This commit is contained in:
Даниил Путинцев 2023-12-05 20:02:05 +04:00
parent 65cd145a4e
commit bcc99e559f
5 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using RoadTrain.DrawningObjects; using RoadTrain.DrawningObjects;
using RoadTrain.Generics; using RoadTrain.Generics;
using RoadTrain; using RoadTrain.Exceptions;
using RoadTrain.MovementStrategy; using RoadTrain.MovementStrategy;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -5,6 +5,7 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using RoadTrain.DrawningObjects; using RoadTrain.DrawningObjects;
using RoadTrain.MovementStrategy; using RoadTrain.MovementStrategy;
using RoadTrain.Exceptions;
namespace RoadTrain.Generics namespace RoadTrain.Generics

View File

@ -1,5 +1,5 @@
using System; using System;
using RoadTrain; using RoadTrain.Exceptions;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;

View File

@ -5,7 +5,7 @@ using System.Runtime.Serialization;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace RoadTrain namespace RoadTrain.Exceptions
{ {
[Serializable] [Serializable]
internal class StorageOverflowException : ApplicationException internal class StorageOverflowException : ApplicationException

View File

@ -5,7 +5,7 @@ using System.Runtime.Serialization;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace RoadTrain namespace RoadTrain.Exceptions
{ {
[Serializable] [Serializable]
internal class TrainNotFoundException : ApplicationException internal class TrainNotFoundException : ApplicationException