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