partial void DeleteDHDeathIndex(DenniHlasatelDeathRecord instance);
 /// <summary>
 /// Create a new Denni Hlasatel death index record by copying an existing, generic death record
 /// </summary>
 /// <param name="drSource">the existing death record to copy</param>
 /// <returns>A Denni Hlasatel death index record containing the supported vital statistics from <paramref name="drSource"/></returns>
 public static DenniHlasatelDeathRecord Create(IDeathRecord drSource)
 {
     var drNew = new DenniHlasatelDeathRecord();
     Initialize(drSource, drNew);
     return drNew;
 }
 partial void InsertDHDeathIndex(DenniHlasatelDeathRecord instance);