public BaseController(IAuthenticationService authenticationService, IEcoUserService ecoUserService,
     IEcoProfileService ecoProfileService)
 {
     _ecoUserService = ecoUserService;
     _authenticationService = authenticationService;
     _ecoProfileService = ecoProfileService;
 }
        public EcoUserService(IEcoUserRepository repository, IOrchardServices orchardServices,
            IMembershipService membershipService, IClock clock,
            IEcoProfileService profileService, IEcoRoleService roleService)
            : base(repository)
        {
            _clock = clock;
            _membershipService = membershipService;
            _orchardServices = orchardServices;

            ProfileService = profileService;
            RoleService = roleService;
        }
 public HomeController(IShapeFactory shapeFactory, IAuthenticationService authenticationService,
     IMembershipService membershipService,
     IEcoMedicineService medicineService,
     IEcoUserService ecoUserService,
     IEcoProfileService ecoProfileService,
     IOrchardServices orchardServices)
     : base(authenticationService, ecoUserService, ecoProfileService)
 {
     _shapeFactory = shapeFactory;
     _membershipService = membershipService;
     _medicineService = medicineService;
     _orchardServices = orchardServices;
     _t = NullLocalizer.Instance;
 }
 public LifestyleController(IAuthenticationService authenticationService, IEcoUserService ecoUserService, IEcoProfileService ecoProfileService)
     : base(authenticationService, ecoUserService, ecoProfileService)
 {
 }
 public AccountController(IAuthenticationService authenticationService, IEcoUserService ecoUserService, IEcoProfileService ecoProfileService)
     : base(authenticationService, ecoUserService, ecoProfileService)
 {
 }
 public SupplementsController(IAuthenticationService authenticationService, IEcoUserService ecoUserService, IEcoProfileService ecoProfileService)
     : base(authenticationService, ecoUserService, ecoProfileService)
 {
 }