Exemplo n.º 1
0
 public LocationService(
     FriendlyContext friendlyContext,
     ILocationBoundsService locationBoundsService)
 {
     _friendlyContext       = friendlyContext;
     _locationBoundsService = locationBoundsService;
 }
Exemplo n.º 2
0
 public LocationController(
     FriendlyContext friendlyContext,
     ILocationService locationService,
     ILocationReviewService locationReviewService,
     ICache cache)
 {
     _friendlyContext       = friendlyContext;
     _locationReviewService = locationReviewService;
     _cache           = cache;
     _locationService = locationService;
 }
Exemplo n.º 3
0
 public CheckController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Exemplo n.º 4
0
 public TagController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Exemplo n.º 5
0
 public ImageController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Exemplo n.º 6
0
 public LocationTypeController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }
Exemplo n.º 7
0
 public RatingController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }