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

19 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Enums;
namespace BankingBot.LoginCredentials
{
public abstract class LoginCredentials : ILoginCredentials
{
public Provider GetProvider()
{
return ProviderIdentifier.GetProviderFromType(GetType());
}
}
}