Exemple #1
0
 public BeehiveManager(IBeeCommon beeCommon, IBeeManager beeManager, IShapeDrawing shapeDrawing, IImageDrawing imageDrawing)
 {
     _beeCommon    = beeCommon;
     _beeManager   = beeManager;
     _imageDrawing = imageDrawing;
     _shapeDrawing = shapeDrawing;
 }
Exemple #2
0
 public FlowerManager(
     IImageDrawing imageDrawing,
     ILifeFactory lifeFactory,
     ILandscapeManager landscape,
     IFlowerLifeCycle flowerLifeCycle,
     IShapeDrawing shapeDrawing,
     ICommonUtilities utilitiesResolver)
 {
     _imageDrawing      = imageDrawing;
     _flowerLifeCycle   = flowerLifeCycle;
     _lifeFactory       = lifeFactory;
     _landscape         = landscape;
     _shapeDrawing      = shapeDrawing;
     _utilitiesResolver = utilitiesResolver;
 }
Exemple #3
0
 public LandscapeManager(IShapeDrawing shapeDrawing, IImageDrawing imageDrawing)
 {
     _shapeDrawing = shapeDrawing;
     _imageDrawing = imageDrawing;
 }