Exemplo n.º 1
0
 public Handler(IRemsDbContextFactory factory) : base(factory)
 {
 }
Exemplo n.º 2
0
 public Handler(IRemsDbContextFactory factory, IFileManager manager) : base(factory)
 {
     _manager = manager;
 }
Exemplo n.º 3
0
 public WriteObservedCommandHandler(IRemsDbContextFactory context, IFileManager file)
 {
     _factory = context;
     _file    = file;
 }
Exemplo n.º 4
0
 public BaseHandler(IRemsDbContextFactory factory)
 {
     _factory = factory;
 }