partial void DeleteJob(Job instance);
partial void UpdateJob(Job instance);
private void detach_Jobs(Job entity) { this.SendPropertyChanging(); entity.User = null; }
partial void InsertJob(Job instance);
private void attach_Jobs(Job entity) { this.SendPropertyChanging(); entity.User = this; }