コード例 #1
0
 public PostProfileController(ICommandBus commandBus, IPostProfileRepository postProfileRepository)
 {
     this.commandBus            = commandBus;
     this.postProfileRepository = postProfileRepository;
 }
コード例 #2
0
 public PostProfileController(ICommandBus commandBus, IPostProfileRepository postProfileRepository)
 {
     this.commandBus = commandBus;
     this.postProfileRepository = postProfileRepository;
 }
コード例 #3
0
 public DeletePostProfileHandler(IPostProfileRepository postProfileRepository, IUnitOfWork unitOfWork)
 {
     this.postProfileRepository = postProfileRepository;
     this.unitOfWork            = unitOfWork;
 }
コード例 #4
0
 public CreateOrUpdatePostProfileHandler(IPostProfileRepository postProfileRepository, IUnitOfWork unitOfWork)
 {
     this.postProfileRepository = postProfileRepository;
     this.unitOfWork            = unitOfWork;
 }