public void UpdateLocalDatabase(Guid teamId)
 {
     RemoteConsumer.AddAction(() => GetFormation(teamId));
     RemoteConsumer.AddAction(() => GetPlayer(teamId));
     RemoteConsumer.AddAction(() => GetAttacks(teamId));
     RemoteConsumer.AddAction(() => GetAttackGoal(teamId));
     RemoteConsumer.AddAction(() => GetAttackRebound(teamId));
     RemoteConsumer.AddAction(() => GetAttackShot(teamId));
 }
Beispiel #2
0
 public void AddGame(DbGame game)
 {
     RemoteConsumer.AddAction(() => ExecuteAddGame(game));
 }
Beispiel #3
0
 public void AddFormation(List <DbFormation> dbFormations)
 {
     RemoteConsumer.AddAction(() => ExecuteAddFormation(dbFormations));
 }
 public void InsertGameData(DbGame game)
 {
     RemoteConsumer.AddAction(() => ExecuteInsertGameData(game));
 }