Beispiel #1
0
 public LogsController(IDeleteLogCommand deleteLogCommand, IGetLogCommand getLogCommand, IGetLogsCommand getLogsCommand, IInsertLogCommand insertLogCommand, IUpdateLogCommand updateLogCommand)
 {
     this.deleteLogCommand = deleteLogCommand;
     this.getLogCommand    = getLogCommand;
     this.getLogsCommand   = getLogsCommand;
     this.insertLogCommand = insertLogCommand;
     this.updateLogCommand = updateLogCommand;
 }
Beispiel #2
0
 public LogsController(IGetLogsCommand getLogs, UseCaseExecutor executor, IGetLogCommand getLog)
 {
     this.getLogs  = getLogs;
     this.executor = executor;
     this.getLog   = getLog;
 }