Esempio n. 1
0
 public FakeTeaserTeamRepository()
 {
     for (int i = 1; i <= 50; i++)
     {
         TeaserTeam x = new TeaserTeam();
         x.Id = i;
         x.LeagueId = (i < 25) ? 1 : 2;
         x.Name = "Team-" + i;
         list.Add(x);
     }
 }
Esempio n. 2
0
 public TeaserTeam Save(TeaserTeam entity)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public bool Delete(TeaserTeam entity)
 {
     throw new NotImplementedException();
 }