public StadiumsController(IMapper mapper, ILogger <StadiumsController> logger, IStadiumsService stadiumsService, ICloudinaryService cloudinaryService)
 {
     this.mapper            = mapper;
     this.logger            = logger;
     this.stadiumsService   = stadiumsService;
     this.cloudinaryService = cloudinaryService;
 }
Exemplo n.º 2
0
 public StadiumsController(IStadiumsService stadiumsService, ICloudinaryService cloudinaryService, IMapper mapper)
 {
     this.stadiumsService   = stadiumsService;
     this.cloudinaryService = cloudinaryService;
     this.mapper            = mapper;
 }