Beispiel #1
0
 /// <summary>
 /// This method Signs Up a new Employee for an event.
 /// </summary>
 /// <param name="eventId">Id of the event.</param>
 /// <param name="employeeId">Id of the Employee</param>
 /// <param name="comments">Any Comments the Employee added in the Sign Up process.</param>
 /// <returns></returns>
 private EmployeeSignUpDTO SignUpNewEmployee(int eventId, int employeeId, string comments)
 {
     return(_eventsService.AddEmployeeToEvent(eventId, employeeId, comments));
 }