public ChangelogStatusType GetChangelogStatus(ChangelogIdentificationType changelogid)
 {
     try
     {
         ChangelogManager mng = new ChangelogManager(db);
         return(mng.GetChangelogStatus(changelogid.changelogId));
     }
     catch (Exception ex)
     {
         throw new FaultException(ex.Message);
     }
 }