Пример #1
0
 public LocationService(
     FriendlyContext friendlyContext,
     ILocationBoundsService locationBoundsService)
 {
     _friendlyContext       = friendlyContext;
     _locationBoundsService = locationBoundsService;
 }
Пример #2
0
 public LocationController(
     FriendlyContext friendlyContext,
     ILocationService locationService,
     ILocationReviewService locationReviewService,
     ICache cache)
 {
     _friendlyContext       = friendlyContext;
     _locationReviewService = locationReviewService;
     _cache           = cache;
     _locationService = locationService;
 }
Пример #3
0
 public CheckController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Пример #4
0
 public TagController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Пример #5
0
 public ImageController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Пример #6
0
 public LocationTypeController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Пример #7
0
 public RatingController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }