public CommentController(IPitchService pitchService, IPitchImage pitchImage, IHostingEnvironment enviroment, IUserService userService, ICommentService commentService, IAccountService accountService) { _pitchService = pitchService; _environment = enviroment; _pitchImage = pitchImage; _userService = userService; _commentService = commentService; _accountService = accountService; }
public PitchesController(IPitchService pitchService, IAddressService addressService, IWebHostEnvironment hostingEnvironment) { this.pitchService = pitchService; this.addressService = addressService; this.pitchCoverHostingPath = $"{hostingEnvironment.WebRootPath}/img/fields/"; }
public HomeController(IGatherService gatherService, IRecruitmentService recruitmentService, IPitchService pitchService) { this.gatherService = gatherService; this.recruitmentService = recruitmentService; this.pitchService = pitchService; }
public PitchController(IPitchService pitchservice, IHostingEnvironment enviroment, IPitchImage pitchImage) { _pitchservice = pitchservice; _environment = enviroment; _pitchImage = pitchImage; }
public HomeController(IPitchService pitchService, IMapService mapService, IWeatherService weatherService) { _pitchService = pitchService; _mapService = mapService; _weatherService = weatherService; }
public PitchesController(IPitchService pitchService) { this.pitchService = pitchService; }
public BookingService(IEnumerable <IUnavailabilityProvider> unavailabilityProviders, IPitchService pitchService) { _unavailabilityProviders = unavailabilityProviders; _pitchService = pitchService; }
public ReservationController(IReservationService reservationService, ICaptainService captainService, IPitchService pitchService) { _reservationService = reservationService; _captainService = captainService; _pitchService = pitchService; }
public PitchController(IPitchService pitchService) { _pitchService = pitchService; }