Exemplo n.º 1
0
 public void LeaveBoard(string userId, string boardId)
 {
     try
     {
         db.LeaveBoard(userId, boardId);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }