Dodano Wysypisko
This commit is contained in:
parent
d6357bb13e
commit
e90ecfa634
@ -46,6 +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\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" />
|
||||||
|
@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
|
||||||
|
using CzokoŚmieciarka.DataModels.Models;
|
||||||
|
|
||||||
|
namespace CzokoŚmieciarka.DataModels.Interfaces
|
||||||
|
{
|
||||||
|
public abstract class ADump : ATrashCan
|
||||||
|
{
|
||||||
|
protected ADump(ITypeOfGarbage typeOfGarbage, int maxVolume) : base(typeOfGarbage, maxVolume)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
Coords Localization { get; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user