コード例 #1
0
 public PracticController(IPracticService practicService, ILogger <PracticController> logger)
 {
     _practicService = practicService;
     _logger         = logger;
 }
コード例 #2
0
 public ReportGeneration(IReportGen reportGen, IPracticService practicService, IStudService studService)
 {
     _reportGen      = reportGen;
     _practicService = practicService;
     _studService    = studService;
 }