Exemple #1
0
 public Form1(ClaimReader claimReader, ICommandDispatcher dispatcher, IWorkspace workspace)
     : this()
 {
     _claimReader = claimReader;
     _dispatcher = new ExceptionTrapDispatcher(dispatcher);
     this._workspace = workspace;
 }
 public ClaimsController(ClaimReader claimReader)
 {
     _claimReader = claimReader;
 }
 public CommandsController(ICommandDispatcher commandDispatcher, ClaimReader claimReader)
 {
     _commandDispatcher = commandDispatcher;
     _claimReader = claimReader;
 }