public void addInfraccion(Infraccion infraccion) { Infraccion unaInfraccion = new Infraccion() { Fecha = infraccion.Fecha, JugadorID = infraccion.JugadorID, Motivo = infraccion.Motivo, PartidoID = infraccion.PartidoID }; db.Infraccions.InsertOnSubmit(unaInfraccion); db.SubmitChanges(); }
partial void DeleteInfraccion(Infraccion instance);
partial void UpdateInfraccion(Infraccion instance);
partial void InsertInfraccion(Infraccion instance);
private void detach_Infraccions(Infraccion entity) { this.SendPropertyChanging(); entity.Partido = null; }
private void attach_Infraccions(Infraccion entity) { this.SendPropertyChanging(); entity.Jugador = this; }