Example #1
0
 public UserController(IUserService userService, IGlobalServices globalService,
                       IHostingEnvironment hostingEnvironment, IMailHandler handler)
 {
     _userService        = userService;
     _globalService      = globalService;
     _hostingEnvironment = hostingEnvironment;
     _handler            = handler;
 }
Example #2
0
 public ProgrammerPanel(IGlobalServices service, IStoredProcedureRepository stored)
 {
     services   = service;
     procedures = stored;
 }