コード例 #1
0
ファイル: LocationService.cs プロジェクト: chrisfisher/kdfy
 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
ファイル: RatingController.cs プロジェクト: chrisfisher/kdfy
 public RatingController(FriendlyContext friendlyContext)
 {
     _friendlyContext = friendlyContext;
 }