示例#1
0
 public StudentController(IStudService studentService, IUserService userService, IFileService fileService, IRequestClient <IEmailSend> requestClient, ILogger <StudentController> logger)
 {
     _studentService = studentService;
     _userService    = userService;
     _fileService    = fileService;
     _requestClient  = requestClient;
     _logger         = logger;
 }
示例#2
0
 public ReportGeneration(IReportGen reportGen, IPracticService practicService, IStudService studService)
 {
     _reportGen      = reportGen;
     _practicService = practicService;
     _studService    = studService;
 }