예제 #1
0
 public RollerSkateMapLocationsController(IRollerSkateMapLocationRepository rollerSkateMapLocationRepository)
 {
     _rollerSkateMapLocationRepository = rollerSkateMapLocationRepository;
 }
 public UsersController(IUserRepository userRepository, ICommentRepository commentRepository, IRollerSkateMapLocationRepository rollerSkateMapLocationRepository)
 {
     _userRepository     = userRepository;
     _commentRepository  = commentRepository;
     _locationRepository = rollerSkateMapLocationRepository;
 }
 public LocationsController(IRollerSkateMapLocationRepository locationRepository, IUserRepository userRepository, AppConfiguration appConfiguration)
 {
     _locationRepository = locationRepository;
     _userRepository     = userRepository;
     _appConfiguration   = appConfiguration;
 }