Ejemplo n.º 1
0
 public TeamController(IShapeFactory shapeFactory,
                       IHackathonService hackathonService,
                       IHtmlLocalizer <TeamController> htmlLocalizer,
                       IAuthorizationService authorizationService,
                       INotifier notifier,
                       YesSql.ISession session,
                       ISiteService siteService
                       )
 {
     New = shapeFactory;
     _hackathonService = hackathonService;
     H = htmlLocalizer;
     _authorizationService = authorizationService;
     _notifier             = notifier;
     _session     = session;
     _siteService = siteService;
 }
 public HackathonController(IHackathonService hackathonService)
 {
     _hackathonService = hackathonService;
 }