Esempio n. 1
0
 public BookAddCommandHandler(IBookArchiveUOW uow, IFileStorageService fileStorageService)
 {
     this.uow = uow;
     this.fileStorageService = fileStorageService;
 }
Esempio n. 2
0
 public BookDeleteCommandHandler(IBookArchiveUOW uow, IMapper mapper)
 {
     this.uow    = uow;
     this.mapper = mapper;
 }
Esempio n. 3
0
 public BookDeleteCommandHandler(IBookArchiveUOW uow)
 {
     this.uow = uow;
 }
Esempio n. 4
0
 public AuthorsRepository(BookArchiveDataContext dataContext, IBookArchiveUOW uow) : base(dataContext)
 {
     this.dbx = dataContext;
     this.uow = uow;
 }
Esempio n. 5
0
 public BookQueryHandler(IBookArchiveUOW uow)
 {
     this.uow = uow;
 }
Esempio n. 6
0
 public BookUpdateCommandHandler(IBookArchiveUOW uow, IFileStorageService fileStorageService, IMapper mapper)
 {
     this.uow = uow;
     this.fileStorageService = fileStorageService;
     this.mapper             = mapper;
 }
Esempio n. 7
0
 public AuthorUpdateCommandHandler(IBookArchiveUOW uow, IMapper mapper)
 {
     this.uow    = uow;
     this.mapper = mapper;
 }
Esempio n. 8
0
 public BookQueryHandler(IBookArchiveUOW uow, IMapper mapper)
 {
     this.uow    = uow;
     this.mapper = mapper;
 }
Esempio n. 9
0
 public AuthorQueryHandler(IBookArchiveUOW uow)
 {
     this.uow = uow;
 }
Esempio n. 10
0
 public AuthorUpdateCommandHandler(IBookArchiveUOW uow)
 {
     this.uow = uow;
 }