public SearchResult(Champion champion)
 {
     _data = champion;
     _title = champion.displayName;
     _subtitle = champion.title;
     _description = "";
     _imagePath = champion.iconPath;
     _isChampion = true;
     _isItem = false;
     _id = champion.id;
 }
 public Skin()
 {
     _id = 0;
     _isBase = true;
     _rank = 0;
     _champion = null;
     _name = "";
     _displayName = "";
     _portraitPath = "";
     _splashPath = "";
 }
 public Skin(Model.ChampionSkin championSkin, Champion champion)
 {
     _id = championSkin.id;
     _isBase = championSkin.isBase;
     _rank = championSkin.rank;
     _champion = champion;
     _name = championSkin.name;
     _displayName = championSkin.displayName;
     _portraitPath = championSkin.portraitPath;
     _splashPath = championSkin.splashPath;
 }
 public void AddChampion(Champion champion)
 {
     _champions.Add(champion);
 }