Ejemplo n.º 1
0
 public RegistrationController(ILanguageService languageService, IKnowledgeLevelService knowledgeLevelService, ICustomerService customerService, IHandsetService handsetService)
 {
     this._languageService       = languageService;
     this._knowledgeLevelService = knowledgeLevelService;
     this._customerService       = customerService;
     this._handsetService        = handsetService;
 }
 public RentalController(IHandsetService handsetService, ILanguageService languageService, IKnowledgeLevelService knowledgeLevelService, ICustomerService customerService)
 {
     this._handsetService = handsetService;
     this._languageService = languageService;
     this._knowledgeLevelService = knowledgeLevelService;
     this._customerService = customerService;
 }
 public HandsetController(IHandsetService handsetService)
 {
     this._handsetService = handsetService;
 }
 /// <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;
 }
 public HandsetController(IHandsetService handsetService)
 {
     this._handsetService = handsetService;
 }
 /// <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;
 }