//AccountInterface accountInterface;
 public SharedController(GameInterface iGame, CharacterInterface iChar, RestrictionsInterface iRest, EventInterface iEvent)
 {
     gameInterface = iGame;
     charInterface = iChar;
     restrictionsInterface = iRest;
     eventInterface = iEvent;
 }
 public EventsController(EventInterface iEvent, GameInterface iGame, CharacterInterface iChar, AccountInterface iAcct)
 {
     eventInterface = iEvent;
     charInterface = iChar;
     gameInterface = iGame;
     accountInterface = iAcct;
 }
 public CharacterController(CharacterInterface iChar, GameInterface iGame, EventInterface iEvent)
 {
     characterInterface = iChar;
     gameInterface = iGame;
     eventInterface = iEvent;
 }
 public AccountController(AccountInterface currentAccountInterface, GameInterface currentGameInterface, CharacterInterface currentCharInterface)
 {
     accountInterface = currentAccountInterface;
     gameInterface = currentGameInterface;
     charInterface = currentCharInterface;
 }
 public GameController(GameInterface currentGameInterface)
 {
     gameInterface = currentGameInterface;
 }