Beispiel #1
0
 public List <Guardian> List()
 {
     using (var context = new ContextFSIS())
     {
         return(context.Guardians.ToList());
     }
 }
 public List <Player> List()
 {
     using (var context = new ContextFSIS())
     {
         return(context.Player.ToList());
     }
 }
Beispiel #3
0
 public Guardian FindByPKID(int id)
 {
     using (var context = new ContextFSIS())
     {
         return(context.Guardians.Find(id));
     }
 }
 public Player FindByPKID(int id)
 {
     using (var context = new ContextFSIS())
     {
         return(context.Player.Find(id));
     }
 }
Beispiel #5
0
 public List <Team> List()
 {
     using (var context = new ContextFSIS())
     {
         return(context.Teams.ToList());
     }
 }
Beispiel #6
0
 public Team FindByTeamID(int id)
 {
     using (var context = new ContextFSIS())
     {
         return(context.Teams.Find(id));
     }
 }
 public int Update(Player item)
 {
     using (var context = new ContextFSIS())
     {
         context.Entry(item).State = System.Data.Entity.EntityState.Modified;
         return(context.SaveChanges());
     }
 }
 public int Add(Player item)
 {
     using (var context = new ContextFSIS())
     {
         context.Player.Add(item);
         context.SaveChanges();
         return(item.PlayerID);
     }
 }
Beispiel #9
0
 public int Add(Player person)
 {
     using (var context = new ContextFSIS())
     {
         context.Players.Add(person);
         context.SaveChanges();
         return(person.PlayerID);
     }
 }
 public List <Player> FindByPartialName(string partialname)
 {
     using (var context = new ContextFSIS())
     {
         IEnumerable <Player> results =
             context.Database.SqlQuery <Player>("Player_GetByPartialPlayerName @PartialName",
                                                new SqlParameter("PartialName", partialname));
         return(results.ToList());
     }
 }
 public List <Player> FindByID(int id)
 {
     using (var context = new ContextFSIS())
     {
         IEnumerable <Player> results =
             context.Database.SqlQuery <Player>("Player_GetByTeam @ID"
                                                , new SqlParameter("ID", id));
         return(results.ToList());
     }
 }
 public int Delete(int productid)
 {
     using (var context = new ContextFSIS())
     {
         var existing = context.Player.Find(productid);
         if (existing == null)
         {
             throw new Exception("Player has been removed from database");
         }
         context.Player.Remove(existing);
         return(context.SaveChanges());
     }
 }