Poprawa wysypiska

This commit is contained in:
Bartosz Chyzy 2019-03-13 15:42:14 +01:00
parent e90ecfa634
commit e9476f7b2d
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@
<Compile Include="Interfaces\GarbageCollector\IGarbageCollector.cs" /> <Compile Include="Interfaces\GarbageCollector\IGarbageCollector.cs" />
<Compile Include="Interfaces\Garbage\AGarbage.cs" /> <Compile Include="Interfaces\Garbage\AGarbage.cs" />
<Compile Include="Interfaces\Garbage\IGarbage.cs" /> <Compile Include="Interfaces\Garbage\IGarbage.cs" />
<Compile Include="Interfaces\IDump.cs" /> <Compile Include="Interfaces\TrashCans\ADump.cs" />
<Compile Include="Interfaces\IGarbageLocalization.cs" /> <Compile Include="Interfaces\IGarbageLocalization.cs" />
<Compile Include="Interfaces\ITypeOfGarbage.cs" /> <Compile Include="Interfaces\ITypeOfGarbage.cs" />
<Compile Include="Interfaces\RoutePlanningEngine\IRoutePlanningEngine.cs" /> <Compile Include="Interfaces\RoutePlanningEngine\IRoutePlanningEngine.cs" />

View File

@ -10,8 +10,9 @@ namespace CzokoŚmieciarka.DataModels.Interfaces
{ {
public abstract class ADump : ATrashCan public abstract class ADump : ATrashCan
{ {
protected ADump(ITypeOfGarbage typeOfGarbage, int maxVolume) : base(typeOfGarbage, maxVolume) protected ADump(ITypeOfGarbage typeOfGarbage, int maxVolume, Coords localization) : base(typeOfGarbage, maxVolume)
{ {
this.Localization = localization;
} }
Coords Localization { get; } Coords Localization { get; }