public IStudentApplicationService _SetStudentApplicationService(IStudentApplicationService obj)
 {
     _IStudentApplicationService = obj; return obj;
 }
 public StudentController(IStudentApplicationService studentApplicationService
                          )
 {
     _studentApplicationService = studentApplicationService;
 }
Exemplo n.º 3
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, IStudentApplicationService service)
 {
     _logger  = logger;
     _service = service;
 }
Exemplo n.º 4
0
 public StudentController(IStudentApplicationService studentApplicationService)
 {
     _studentApplicationService = studentApplicationService;
 }