Ejemplo n.º 1
0
        public PlayerAdapter(Activity context, IEnumerable <Player> players, int listViewLayout)
        {
            this._context        = context;
            this._players        = players.OrderBy(p => p.Surname).ToList();
            this._listViewLayout = listViewLayout;

            premierTeamRepository = new SQLitePremierTeamRepository();
            positionRepository    = new SQLitePositionRepository();
        }
Ejemplo n.º 2
0
 public AdminPremierTeamListActivity()
 {
     premierTeamRepository = new SQLitePremierTeamRepository();
 }
 public AdminChangePremierTeamDetailsActivity()
 {
     premierTeamRepository = new SQLitePremierTeamRepository();
 }
Ejemplo n.º 4
0
 public AdminChangePlayerDetailsActivity()
 {
     positionRepository    = new SQLitePositionRepository();
     playerRepository      = new SQLitePlayerRepository();
     premierTeamRepository = new SQLitePremierTeamRepository();
 }