Esempio n. 1
0
 public UserController(
     IUserService userService,
     IFormsAuthenticationService formsAuthenticationService,
     IDemoDataService demoDataService)
     : base(formsAuthenticationService, demoDataService)
 {
     _userService = userService;
 }
Esempio n. 2
0
        public BaseController(
            IFormsAuthenticationService formsAuthenticationService,
            IDemoDataService demoDataService)
        {
            _formsAuthenticationService = formsAuthenticationService;
            _demoDataService = demoDataService;

            _htmlHelper = new HtmlHelper(new ViewContext(), new ViewPage());
        }
Esempio n. 3
0
 public HomeController(
     IFormsAuthenticationService formsAuthenticationService, 
     IDemoDataService demoDataService)
     : base(formsAuthenticationService, demoDataService)
 {
 }
 public DemoDataController(IDemoDataService demoDataService)
 {
     _demoDataService = demoDataService;
 }
Esempio n. 5
0
 public DemoController(IDemoDataService demoDataService)
 {
     this.demoDataService = demoDataService;
 }
Esempio n. 6
0
 public DemoFlow1(IDemoDataService dataService)
 {
     _dataService = dataService;
 }