Example #1
0
 public DocumentXlsxApp(IMapper iMapper,
                        IDocumentXlsxService service,
                        IDocumentXlsxRepository repository,
                        IUserApp userApp,
                        IBus bus)
     : base(iMapper, service)
 {
     _service    = service;
     _repository = repository;
     _userApp    = userApp;
     _bus        = bus;
 }
Example #2
0
 public DocumentXlsxService(IDocumentXlsxRepository repository)
     : base(repository)
 {
     _documentXlsxRepository = repository;
 }