/// <summary> /// Assigns a job to a working unit /// </summary> /// <param name="job">Job</param> /// <param name="wu">Work Unit</param> internal void Assign(IJob job, IWorkUnit wu) { /** we may be doing some additional hocus.pocus, but otherwise from that... */ /** as soon as all the neccessary binds are completed, the job should start */ job.Bind(wu); }