Analysis-Services/AlmToolkit/BismNormalizer/TabularCompare/TabularMetadata/PerspectiveCollection.cs
2023-09-28 08:08:39 -07:00

84 lines
2.5 KiB
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BismNormalizer.TabularCompare.TabularMetadata
{
/// <summary>
/// Represents a collection of Perspective objects.
/// </summary>
public class PerspectiveCollection : List<Perspective>
{
/// <summary>
/// Find an object in the collection by name.
/// </summary>
/// <param name="name"></param>
/// <returns>Perspective object if found. Null if not found.</returns>
public Perspective FindByName(string name)
{
foreach (Perspective perspective in this)
{
if (perspective.Name == name)
{
return perspective;
}
}
return null;
}
/// <summary>
/// A Boolean specifying whether the collection contains object by name.
/// </summary>
/// <param name="name"></param>
/// <returns>True if the object is found, or False if it's not found.</returns>
public bool ContainsName(string name)
{
foreach (Perspective perspective in this)
{
if (perspective.Name == name)
{
return true;
}
}
return false;
}
/// <summary>
/// Find an object in the collection by Id.
/// </summary>
/// <param name="id"></param>
/// <returns>Culture object if found. Null if not found.</returns>
public Perspective FindById(string id)
{
foreach (Perspective perspective in this)
{
if (perspective.InternalName == id)
{
return perspective;
}
}
return null;
}
/// <summary>
/// Removes an object from the collection by its internal name.
/// </summary>
/// <param name="internalName"></param>
/// <returns>True if the object was removed, or False if was not found.</returns>
public bool Remove(string internalName)
{
foreach (Perspective perspective in this)
{
if (perspective.InternalName == internalName)
{
this.Remove(perspective);
return true;
}
}
return false;
}
}
}