/// <summary> /// Add a help seeker to an aid worker. /// </summary> /// <param name="helpSeekerId"> /// The id of the help seeker. /// </param> /// <param name="aidWorkerId"> /// The id of the aid worker. /// </param> public void AddHelpSeeker(int helpSeekerId, int aidWorkerId) { context.AddHelpSeeker(helpSeekerId, aidWorkerId); }