diff --git a/MVPLearning/RecordKeeping/SermonFiler/MaintainSermonFilerModel.cs b/MVPLearning/RecordKeeping/SermonFiler/MaintainSermonFilerModel.cs index 61332b0..a376301 100644 --- a/MVPLearning/RecordKeeping/SermonFiler/MaintainSermonFilerModel.cs +++ b/MVPLearning/RecordKeeping/SermonFiler/MaintainSermonFilerModel.cs @@ -56,19 +56,20 @@ namespace MVPLearning.RecordKeeping.SermonFiler public override int GetHashCode() { - HashCode hash = new(); - hash.Add(Seid); - hash.Add(Title); - hash.Add(Scripture); - hash.Add(When); - hash.Add(Subject); - hash.Add(Minister); - hash.Add(Where); - hash.Add(Ref_No); - hash.Add(Notes); - hash.Add(Filename); - hash.Add(Web); - return hash.ToHashCode(); + //HashCode hash = new(); + //hash.Add(Seid); + //hash.Add(Title); + //hash.Add(Scripture); + //hash.Add(When); + //hash.Add(Subject); + //hash.Add(Minister); + //hash.Add(Where); + //hash.Add(Ref_No); + //hash.Add(Notes); + //hash.Add(Filename); + //hash.Add(Web); + //return hash.ToHashCode(); + return base.GetHashCode(); } } }