public void RemoveUnitSheet(DataTable Sheet)
 {
     UnitDataTables.RemoveAll(x => x.Equals(Sheet));
 }
 public void RemoveLocalizationSheet(DataTable Sheet)
 {
     LocalizationDataTables.RemoveAll(x => x.Equals(Sheet));
 }
 public void RemoveAbilitySheet(DataTable Sheet)
 {
     AbilityDataTables.RemoveAll(x => x.Equals(Sheet));
 }
 public void RemoveHeroSheet(DataTable Sheet)
 {
     HeroDataTables.RemoveAll(x => x.Equals(Sheet));
 }
 public bool Equals(DataTable OtherSheet)
 {
     return this.SpreadsheetId == OtherSheet.SpreadsheetId && this.TabId == OtherSheet.TabId;
 }