banking-bot/BankingBot/Attributes/ProviderIdentifier.cs
2017-02-10 20:48:11 +00:00

28 lines
718 B
C#

using System;
using BankingBot.Enums;
namespace BankingBot.Attributes
{
internal class ProviderIdentifier : Attribute
{
public readonly Provider Provider;
public ProviderIdentifier(Provider provider)
{
Provider = provider;
}
public static Provider GetProviderFromType(Type t)
{
foreach (var attr in t.GetCustomAttributes(false))
{
if ((ProviderIdentifier)attr != null)
{
return ((ProviderIdentifier)attr).Provider;
}
}
throw new InvalidOperationException("Could not find associated provider for given type");
}
}
}