public PostProfileController(ICommandBus commandBus, IPostProfileRepository postProfileRepository) { this.commandBus = commandBus; this.postProfileRepository = postProfileRepository; }
public DeletePostProfileHandler(IPostProfileRepository postProfileRepository, IUnitOfWork unitOfWork) { this.postProfileRepository = postProfileRepository; this.unitOfWork = unitOfWork; }
public CreateOrUpdatePostProfileHandler(IPostProfileRepository postProfileRepository, IUnitOfWork unitOfWork) { this.postProfileRepository = postProfileRepository; this.unitOfWork = unitOfWork; }