public ShowDetails(DataRow row)
     : base()
 {
     _showDetails = new Fpp.WebModules.Data.ShowDetails(_moduleSettings);
     try
     {
         LoadFromRow(row);
     }
     catch (Exception e)
     {
         AppException.LogEvent("ShowDetails.ShowDetails:" + e.Message);
     }
 }
 public ShowDetails(int ShowDetailsID)
     : base()
 {
     _id = ShowDetailsID;
     _showDetails = new Fpp.WebModules.Data.ShowDetails(_moduleSettings);
     try
     {
         DataSet ds = _showDetails.GetFromShowDetails(_id);
         if (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0)
         {
             LoadFromRow(_showDetails.GetFromShowDetails(_id).Tables[0].Rows[0]);
         }
     }
     catch (Exception e)
     {
         AppException.LogEvent("ShowDetails.ShowDetails(" + ShowDetailsID.ToString() + "): " + e.Message);
     }
 }
 public ShowDetails()
     : base()
 {
     _showDetails = new Fpp.WebModules.Data.ShowDetails(_moduleSettings);
 }