/// <summary>Static getter for P.IVA</summary>
 public static string GetPIva(IFooter that)
 {
     return(that.GetPropertyValue <string>("pIVA"));
 }
 /// <summary>Static getter for Phone number</summary>
 public static string GetPhoneNumber(IFooter that)
 {
     return(that.GetPropertyValue <string>("phoneNumber"));
 }
 /// <summary>Static getter for Location</summary>
 public static string GetLocation(IFooter that)
 {
     return(that.GetPropertyValue <string>("location"));
 }
 /// <summary>Static getter for E-mail address</summary>
 public static string GetEMailAddress(IFooter that)
 {
     return(that.GetPropertyValue <string>("eMailAddress"));
 }
 /// <summary>Static getter for Company name</summary>
 public static string GetCompanyName(IFooter that)
 {
     return(that.GetPropertyValue <string>("companyName"));
 }
Beispiel #6
0
 /// <summary>Static getter for Footer Data</summary>
 public static Our.Umbraco.Vorto.Models.VortoValue GetFooterData(IFooter that)
 {
     return(that.GetPropertyValue <Our.Umbraco.Vorto.Models.VortoValue>("footerData"));
 }