2019-03-13 14:19:38 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-03-13 14:51:01 +01:00
|
|
|
|
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
|
2019-03-13 14:19:38 +01:00
|
|
|
|
|
|
|
|
|
namespace CzokoŚmieciarka.DataModels.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public abstract class AGarbageCollectorContainer : ATrashCan
|
|
|
|
|
{
|
|
|
|
|
protected AGarbageCollectorContainer(ITypeOfGarbage typeOfGarbage, int maxVolume) : base(typeOfGarbage, maxVolume)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|