public SystemLogController(ISystemLogAppService service)
 {
     _service = service;
 }
Exemplo n.º 2
0
 public LogsController(IHostingEnvironment hostingEnvironment, ISystemLogAppService systemLogAppService)
 {
     _hostingEnvironment  = hostingEnvironment;
     _systemLogAppService = systemLogAppService;
 }