public static string GetDetailUrl(this ProjectCustomAttributeType projectCustomAttributeType) => DetailUrlTemplate.ParameterReplace(projectCustomAttributeType.ProjectCustomAttributeTypeID);
Beispiel #2
0
 /// <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));
 }
Beispiel #4
0
 public static void DeleteProjectCustomAttributeType(this IQueryable <ProjectCustomAttributeType> projectCustomAttributeTypes, ProjectCustomAttributeType projectCustomAttributeTypeToDelete)
 {
     DeleteProjectCustomAttributeType(projectCustomAttributeTypes, new List <ProjectCustomAttributeType> {
         projectCustomAttributeTypeToDelete
     });
 }