public ChatHub()
 {
     _db = new OMCSDBContext();
     business = new ConversationBusiness(_db);
     helper = new ChatHubHelper(_db);
     Doctors = helper.GetListDoctors();
 }
 public CustomSnippetBusiness(OMCSDBContext _db)
 {
     this._db = _db;
 }
 public ConversationBusiness(OMCSDBContext context)
 {
     _db = context;
 }