public ConnectionStatusController(IContactServiceLayer service, IWebSecurityWrapper security)
 {
     _security = security;
     _service = service;
 }
예제 #2
0
 public BlackListController(IContactServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
 public ContactRequestController(IContactServiceLayer service, IWebSecurityWrapper security, INotificationSender notice)
 {
     _service = service;
     _security = security;
     _notice = notice;
 }