Esempio n. 1
0
 public IEnumerable <UserDTO> GetBoardCollaborators(string boardId)
 {
     try
     {
         return(db_.GetBoardCollaborators(boardId));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }