public PlaygroundsController(ISportComplexRepository sportcomplexRepository, ISurfaceRepository surfaceRepository, IPlaygroundRepository playgroundRepository)
 {
     this.sportcomplexRepository = sportcomplexRepository;
     this.surfaceRepository = surfaceRepository;
     this.playgroundRepository = playgroundRepository;
 }
 public PlaygroundsController(IPlaygroundRepository repository)
 {
     _repository = repository;
 }
 public ReservationsController(IPlaygroundRepository playgroundRepository, ICustomerProfileRepository customerprofileRepository, IReservationRepository reservationRepository)
 {
     this.playgroundRepository = playgroundRepository;
     this.customerprofileRepository = customerprofileRepository;
     this.reservationRepository = reservationRepository;
 }
 public PlaygroundImagesController(IPlaygroundRepository playgroundRepository, IPlaygroundImageRepository playgroundimageRepository)
 {
     this.playgroundRepository = playgroundRepository;
     this.playgroundimageRepository = playgroundimageRepository;
 }
 public ReservationFeesController(IPlaygroundRepository playgroundRepository, IReservationFeeRepository reservationfeeRepository)
 {
     this.playgroundRepository = playgroundRepository;
     this.reservationfeeRepository = reservationfeeRepository;
 }