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