public PlayerScreenContentLog GetPlayerScreenContentLog(int id) { PlayerScreenContentLog playerscreencontentlog = db.PlayerScreenContentLogs.Find(id); return(playerscreencontentlog); }
public void UpdatePlayerScreenContentLog(PlayerScreenContentLog playerscreencontentlog) { db.Entry(playerscreencontentlog).State = EntityState.Modified; db.SaveChanges(); }
public void CreatePlayerScreenContentLog(PlayerScreenContentLog playerscreencontentlog) { db.PlayerScreenContentLogs.Add(playerscreencontentlog); db.SaveChanges(); }