Example #1
0
 public CheckingStatusController(
     ICheckingStatusService CheckingStatusService,
     ICurrentContext CurrentContext
     )
 {
     this.CheckingStatusService = CheckingStatusService;
     this.CurrentContext        = CurrentContext;
 }
 public PlaceCheckingController(
     IAppUserService AppUserService,
     IPlaceService PlaceService,
     ICheckingStatusService CheckingStatusService,
     IPlaceCheckingService PlaceCheckingService,
     ICurrentContext CurrentContext
     )
 {
     this.AppUserService        = AppUserService;
     this.PlaceService          = PlaceService;
     this.CheckingStatusService = CheckingStatusService;
     this.PlaceCheckingService  = PlaceCheckingService;
     this.CurrentContext        = CurrentContext;
 }