private void CreateRampTypeMode(Json json) { if (TypeMode != null && TypeMode.Trim().Length > 0) { json.WriteTag("dc.type.mode"); json.WriteRaw(StringWithComma(TypeMode)); } }
private void CreateRampFormatMedium(Json json) { if (FormatMedium != null && FormatMedium.Trim().Length > 0) { json.WriteTag("dc.format.medium"); json.WriteRaw(StringWithComma(FormatMedium)); } }
private void CreateRampHelperVernacularContent(Json json) { if (HelperVernacularContent != null && HelperVernacularContent.Trim().Length > 0) { json.WriteTag("helper.subject.vernacularContent"); json.WriteRaw(StringWithComma(HelperVernacularContent)); } }
private void CreateRampScriptureScope(Json json) { if (TitleScriptureScope != null && TitleScriptureScope.Trim().Length > 0) { json.WriteTag("dc.title.scriptureScope"); json.WriteRaw(StringWithComma(TitleScriptureScope)); } }
private void CreateRampSilDomain(Json json) { if (SilDomain != null && SilDomain.Trim().Length > 0) { json.WriteTag("dc.subject.silDomain"); json.WriteRaw(StringWithComma(SilDomain)); } }
private void CreateRampDomainSubTypeLing(Json json) { if (DomainSubTypeLing != null && DomainSubTypeLing.Trim().Length > 0) { json.WriteTag("type.domainSubtype.LING"); json.WriteRaw(StringWithComma(DomainSubTypeLing)); } }