Ejemplo n.º 1
0
 public ProjectsController(IProjectServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Ejemplo n.º 2
0
 public ProjectController(IProjectServiceLayer service, IWebSecurityWrapper security, INotificationSender notice)
 {
     _service = service;
     _security = security;
     _notice = notice;
 }
Ejemplo n.º 3
0
 public ProjectController(IProjectServiceLayer service)
 {
     _service = service;
 }