partial void DeleteSQLIncident(SQLIncident instance);
private void detach_SQLIncidents(SQLIncident entity) { this.SendPropertyChanging(); entity.SQLTechnician = null; }
private void detach_SQLIncidents(SQLIncident entity) { this.SendPropertyChanging(); entity.SQLCustomer = null; }
partial void UpdateSQLIncident(SQLIncident instance);
private void LoadIncidentDetails() { var unassignedIncident = (from incident in techSupport.SQLIncidents where incident.IncidentID == (int)this.Tag select incident).Single(); selectedIncident = unassignedIncident; sQLIncidentBindingSource.DataSource = selectedIncident; }
partial void InsertSQLIncident(SQLIncident instance);