Beispiel #1
0
        /// <summary>
        /// Limit the number of tasks in a specific column
        /// </summary>
        /// <param name="email">The email address of the user, must be logged in</param>
        /// <param name="columnOrdinal">The column ID. The first column is identified by 0, the ID increases by 1 for each column</param>
        /// <param name="limit">The new limit value. A value of -1 indicates no limit.</param>
        /// <returns>A response object. The response should contain a error message in case of an error</returns>
        public Response LimitColumnTasks(string email, int columnOrdinal, int limit)
        {
            Response rs = us.validateLoggedIn(email);

            if (rs.ErrorOccured)
            {
                return(rs);
            }
            return(bs.LimitColumnTasks(email, columnOrdinal, limit));
        }
Beispiel #2
0
 /// <summary>
 /// Limit the number of tasks in a specific column
 /// </summary>
 /// <param name="email">The email address of the user, must be logged in</param>
 /// <param name="columnOrdinal">The column ID. The first column is identified by 0, the ID increases by 1 for each column</param>
 /// <param name="limit">The new limit value. A value of -1 indicates no limit.</param>
 /// <returns>A response object. The response should contain a error message in case of an error</returns>
 public Response LimitColumnTasks(string email, int columnOrdinal, int limit)
 {
     return(bService.LimitColumnTasks(email, columnOrdinal, limit));
 }
Beispiel #3
0
 /// <summary>
 /// Limit the number of tasks in a specific column
 /// </summary>
 /// <param name="email">The email address of the user, must be logged in</param>
 /// <param name="columnOrdinal">The column ID. The first column is identified by 0, the ID increases by 1 for each column</param>
 /// <param name="limit">The new limit value. A value of -1 indicates no limit.</param>
 /// <returns>A response object. The response should contain a error message in case of an error</returns>
 public Response LimitColumnTasks(string email, int columnOrdinal, int limit)
 {
     return(boardService.LimitColumnTasks(userService.UserC.GetId(email), columnOrdinal, limit, userService.UserC.currentId()));
 }