public static DataAddContentRequestBuilder AddContent(string entryId, GenericDataCenterContentResource resource)
 {
     return(new DataAddContentRequestBuilder(entryId, resource));
 }
 public DataAddContentRequestBuilder(string entryId, GenericDataCenterContentResource resource)
     : this()
 {
     this.EntryId  = entryId;
     this.Resource = resource;
 }