public DataLoadController(
     IConfigurationServices configurationServices,
     IRegistrationServices registrationServices,
     IOwnerServices ownerServices)
 {
     _configurationServices = configurationServices;
     _registrationServices = registrationServices;
     _ownerServices = ownerServices;
 }
 public SecureSiteController(
     IOrchardServices orchardServices, 
     IAuthenticationService authenticationService,
     IOwnerServices ownerServices,
     IEmailServices emailServices)
 {
     _orchardServices = orchardServices;
     _ownerServices = ownerServices;
     _emailServices = emailServices;
     //_authenticationService = authenticationService;
     T = NullLocalizer.Instance;
     Logger = NullLogger.Instance;
     CurrentUser = authenticationService.GetAuthenticatedUser();
 }
Example #3
0
 public Printer(IPetService petService, IOwnerServices ownerService)
 {
     _petService   = petService;
     _ownerService = ownerService;
 }
 public OwnersController(IOwnerServices ownerService)
 {
     _ownerService = ownerService;
 }