Example #1
0
 public ExcelService(IWorkshopService workshopService,
                     IAttendeeService attendeeService,
                     IAttendeeHourService attendeeHourService)
 {
     _workshopService     = workshopService;
     _attendeeService     = attendeeService;
     _attendeeHourService = attendeeHourService;
 }
Example #2
0
 public AttendeeHoursController(IAttendeeHourService attendeeHourService,
                                IWorkshopService workshopService,
                                IAttendeeService attendeeService)
 {
     _attendeeHourService = attendeeHourService;
     _workshopService     = workshopService;
     _attendeeService     = attendeeService;
 }
 public AttendeeHourController(IAttendeeHourService attendeeHourService)
 {
     _attendeeHourService = attendeeHourService;
 }