using System;
public class SecurityPassMaker
{
public string GetDisplayName(TeamSupport support)
{
if(support is Manager) return "Too Important for a Security Pass";
if(support is SecurityJunior ||support is SecurityIntern|| support is PoliceLiaison) return support.Title;
else if(support is Security) return "Security Team Member Priority Personnel";
else return support.Title;
}
}
/**** Please do not alter the code below ****/
public interface TeamSupport { string Title { get; } }
public abstract class Staff : TeamSupport { public abstract string Title { get; } }
public class Manager : TeamSupport { public string Title { get; } = "The Manager"; }
public class Chairman : TeamSupport { public string Title { get; } = "The Chairman"; }
public class Physio : Staff { public override string Title { get; } = "The Physio"; }
public class OffensiveCoach : Staff { public override string Title { get; } = "Offensive Coach"; }
public class GoalKeepingCoach : Staff { public override string Title { get; } = "Goal Keeping Coach"; }
public class Security : Staff { public override string Title { get; } = "Security Team Member"; }
public class SecurityJunior : Security { public override string Title { get; } = "Security Junior"; }
public class SecurityIntern : Security { public override string Title { get; } = "Security Intern"; }
public class PoliceLiaison : Security { public override string Title { get; } = "Police Liaison Officer"; }
Thank you, friend!
I'm @steem.history, who is steem witness.
Thank you for witnessvoting for me.
please click it!
(Go to https://steemit.com/~witnesses and type fbslo at the bottom of the page)
The weight is reduced because of the lack of Voting Power. If you vote for me as a witness, you can get my little vote.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit