public ChatApiController(IUserService service, IChatService service2, ICommentService service3, ILiveChat service4)
 {
     this._userService = service;
     this._chatService = service2;
     this._commentService = service3;
     this._LiveChat = service4;
 }
 public UserService(IAddressMapper mapper, ILiveChat liveChat)
 {
     this._addressMapper = mapper;
     this._LiveChat = liveChat;
     this._AccountSid = WebConfigurationManager.AppSettings["AccountSid"];
     this._AuthToken = WebConfigurationManager.AppSettings["AuthToken"];
     this._TwilioNumber = WebConfigurationManager.AppSettings["TwilioNumber"];
     this._superAdmin = WebConfigurationManager.AppSettings["superAdmin"];
     this._admin = WebConfigurationManager.AppSettings["admin"];
 }