コード例 #1
0
ファイル: HireController.cs プロジェクト: Karol172/ItemRental
 public HireController(IHireService service)
 {
     _service = service;
 }
コード例 #2
0
 public DeleteHireHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
コード例 #3
0
ファイル: UpdateHireHandler.cs プロジェクト: alexavy/BikeyApp
 public UpdateHireHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
コード例 #4
0
 public HireController(IHireService hireService, IHubContext <NotificationHub> notificationHubContext)
 {
     _hireService            = hireService;
     _notificationHubContext = notificationHubContext;
 }
コード例 #5
0
 public GetHireByIdHandler(IHireService hireService)
 {
     _hireService = hireService;
 }
コード例 #6
0
 public GetAllHiresHandler(IHireService hireService)
 {
     _hireService = hireService;
 }