コード例 #1
0
 public RegistrationController(ILanguageService languageService, IKnowledgeLevelService knowledgeLevelService, ICustomerService customerService, IHandsetService handsetService)
 {
     this._languageService       = languageService;
     this._knowledgeLevelService = knowledgeLevelService;
     this._customerService       = customerService;
     this._handsetService        = handsetService;
 }
コード例 #2
0
 public RentalController(IHandsetService handsetService, ILanguageService languageService, IKnowledgeLevelService knowledgeLevelService, ICustomerService customerService)
 {
     this._handsetService = handsetService;
     this._languageService = languageService;
     this._knowledgeLevelService = knowledgeLevelService;
     this._customerService = customerService;
 }
コード例 #3
0
 public HandsetController(IHandsetService handsetService)
 {
     this._handsetService = handsetService;
 }
コード例 #4
0
 /// <summary>
 /// Initialises a new instance of the <see cref="AuthorizationService"/> class.
 /// </summary>
 /// <param name="handsetService">The <see cref="IHandsetService"/> to use.</param>
 public AuthorizationService(IHandsetService handsetService)
 {
     this._handsetService = handsetService;
 }
コード例 #5
0
 public HandsetController(IHandsetService handsetService)
 {
     this._handsetService = handsetService;
 }
コード例 #6
0
 /// <summary>
 /// Initialises a new instance of the <see cref="AuthorizationService"/> class.
 /// </summary>
 /// <param name="handsetService">The <see cref="IHandsetService"/> to use.</param>
 public AuthorizationService(IHandsetService handsetService)
 {
     this._handsetService = handsetService;
 }