public ChatService(HttpContext httpContext, ChatDao chatDao, UserDao userDao)
 {
     this.httpContext = httpContext;
     this.chatDao     = chatDao;
     this.userDao     = userDao;
 }
 public ChatService(HttpContext httpContext, ChatDao chatDao) : this(httpContext, chatDao, null)
 {
 }