コード例 #1
0
 /// <summary>
 /// Deletes the specified identifier.
 /// </summary>
 /// <param name="id">The identifier.</param>
 /// <returns></returns>
 public bool Delete(int id)
 {
     _logger.Info("Deleting the Department with id " + id);
     return(_nsDepartmentManager.DeleteDepartmentById(id));
 }