public static string GetDetailUrl(this ProjectCustomAttributeType projectCustomAttributeType) => DetailUrlTemplate.ParameterReplace(projectCustomAttributeType.ProjectCustomAttributeTypeID);
/// <summary> /// Creates a "blank" object of this type and populates primitives with defaults /// </summary> public static ProjectCustomAttributeUpdate CreateNewBlank(ProjectUpdateBatch projectUpdateBatch, ProjectCustomAttributeType projectCustomAttributeType) { return(new ProjectCustomAttributeUpdate(projectUpdateBatch, projectCustomAttributeType)); }
/// <summary> /// Creates a "blank" object of this type and populates primitives with defaults /// </summary> public static ProjectTypeProjectCustomAttributeType CreateNewBlank(ProjectType projectType, ProjectCustomAttributeType projectCustomAttributeType) { return(new ProjectTypeProjectCustomAttributeType(projectType, projectCustomAttributeType)); }
public static void DeleteProjectCustomAttributeType(this IQueryable <ProjectCustomAttributeType> projectCustomAttributeTypes, ProjectCustomAttributeType projectCustomAttributeTypeToDelete) { DeleteProjectCustomAttributeType(projectCustomAttributeTypes, new List <ProjectCustomAttributeType> { projectCustomAttributeTypeToDelete }); }