コード例 #1
0
 public RentalService(IRentalUnitOfWork unitOfWork,
                      IMapper mapper,
                      IMessageSendService <EmailMessage> emailSendService,
                      EmailSenderConfiguration configuration)
 {
     _unitOfWork       = unitOfWork;
     _mapper           = mapper;
     _emailSendService = emailSendService;
     _configuration    = configuration;
 }
コード例 #2
0
 public RobotModelService(IRentalUnitOfWork unitOfWork,
                          IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
コード例 #3
0
 public UserService(IRentalUnitOfWork unitOfWork,
                    IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
コード例 #4
0
 public RobotCompanyService(IRentalUnitOfWork unitOfWork,
                            IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }