Ejemplo n.º 1
0
 public IEnumerable <ChatUser> GetAllUsers()
 {
     try
     {
         var userList = _iChatUserRepository.GetAllChatUser();
         return(userList);
     }
     catch (Exception ex)
     {
         string message = ex.Message;
         return(null);
     }
 }