コード例 #1
0
 public Handler(IFleetStore fleetStore, IUserProfileStore userProfileStore)
 {
     this.fleetStore       = fleetStore;
     this.userProfileStore = userProfileStore;
 }
コード例 #2
0
 public Handler(IFleetStore fleetStore)
 {
     this.fleetStore = fleetStore;
 }
コード例 #3
0
 public Handler(IFleetStore fleetStore, IMapper mapper)
 {
     this.fleetStore = fleetStore;
     this.mapper     = mapper;
 }
コード例 #4
0
 public Handler(IFleetStore fleetStore, IMapper mapper, IUserProfileStore userProfileStore)
 {
     this.fleetStore       = fleetStore;
     this.mapper           = mapper;
     this.userProfileStore = userProfileStore;
 }