public CoordinateListsController(ICoordinateService coordinateService, ISquareService squareService) { _coordinateService = coordinateService; _squareService = squareService; }
public HomeController(ISquareService squareService) { _squareService = squareService; }
public EventService(PhotoGalleryIdentityDbContext context, ISquareService square, IImageService imageService) { _context = context; _square = square; _imageService = imageService; }