public TicketsController(IServicerRepository repository, IMapper mapper, ITokenService tokenService, IEmailService emailService)
 {
     _repository   = repository;
     _mapper       = mapper;
     _tokenService = tokenService;
     _emailService = emailService;
 }
示例#2
0
 public ServicerApplication(IServicerRepository servcerRepository, IServicerDomainService servcerDomainService, IOperateLogDomainService operateLogDomainService, IServicerCache servicerCache)
 {
     _servcerRepository       = servcerRepository;
     _servcerDomainService    = servcerDomainService;
     _operateLogDomainService = operateLogDomainService;
     _servicerCache           = servicerCache;
 }
示例#3
0
 public ServicerAppService(IServicerRepository servicerRepository, IServicerImageRepository servicerImageRepository, IDbUnitOfWork dbUnitOfWork, IImageServiceProxy imageServiceProxy, IOrganizationServiceProxy organizationServiceProxy, IAmapProxy amapProxy)
 {
     _servicerRepository       = servicerRepository;
     _servicerImageRepository  = servicerImageRepository;
     _dbUnitOfWork             = dbUnitOfWork;
     _imageServiceProxy        = imageServiceProxy;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy = amapProxy;
 }
示例#4
0
 public AuthController(IAuthRepository repository, IServicerRepository servicerRepository, ITokenService tokenService,
                       IEmailService emailService, IMapper mapper, IConfiguration configuration)
 {
     _repository         = repository;
     _servicerRepository = servicerRepository;
     _tokenService       = tokenService;
     _emailService       = emailService;
     _mapper             = mapper;
     _configuration      = configuration;
 }
示例#5
0
 public TagStatisticsAppService(
     ICommentTagRepository commentTagRepository,
     ITagRepository tagRepository,
     IDbUnitOfWork dbUnitOfWork,
     IServiceRepository serviceRepository,
     IServicerRepository servicerRepository,
     IReservationRepository reservationRepository)
 {
     _tagRepository         = tagRepository;
     _commentTagRepository  = commentTagRepository;
     _dbUnitOfWork          = dbUnitOfWork;
     _serviceRepository     = serviceRepository;
     _servicerRepository    = servicerRepository;
     _reservationRepository = reservationRepository;
 }
示例#6
0
 public ReservationAppService(IReservationRepository reservationRepository,
                              IDbUnitOfWork dbUnitOfWork,
                              IEventBus eventBus,
                              IServiceRepository serviceRepository,
                              IServicerRepository servicerRepository,
                              IOrganizationServiceProxy organizationServiceProxy,
                              IAmapProxy amapProxy,
                              IOrderServiceProxy orderServiceProxy)
 {
     _reservationRepository = reservationRepository;
     _dbUnitOfWork          = dbUnitOfWork;
     _eventBus                 = eventBus;
     _serviceRepository        = serviceRepository;
     _servicerRepository       = servicerRepository;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy                = amapProxy;
     _orderServiceProxy        = orderServiceProxy;
 }
示例#7
0
 public ServiceAppService(
     IServiceRepository serviceRepository,
     IServiceImageRepository serviceImageRepository,
     IDbUnitOfWork unitOfWork,
     IImageServiceProxy imageServiceProxy,
     IOrganizationServiceProxy organizationServiceProxy,
     IAmapProxy amapProxy,
     TmpInstanceGenerate tmp,
     IUserServiceProxy userServiceProxy, IServicerRepository servicerRepository, IGoodsServiceProxy goodsServiceProxy)
 {
     _tmp = tmp;
     _serviceRepository        = serviceRepository;
     _serviceImageRepository   = serviceImageRepository;
     _dbUnitOfWork             = unitOfWork;
     _imageServiceProxy        = imageServiceProxy;
     _organizationServiceProxy = organizationServiceProxy;
     _amapProxy          = amapProxy;
     _userServiceProxy   = userServiceProxy;
     _servicerRepository = servicerRepository;
     _goodsServiceProxy  = goodsServiceProxy;
 }
示例#8
0
 public ServicerCache(IServicerRepository servicerRepository, IRedisDatabaseProvider databaseProvider) : base(databaseProvider, RedisOptionProvider.DefaultOption)
 {
     _servicerRepository = servicerRepository;
 }
 public NotesController(IServicerRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
示例#10
0
 public PersonsController(IServicerRepository repository, IEmailService emailService,
                          ITokenService tokenService, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
示例#11
0
 public ProductSpecificationsController(IServicerRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
示例#12
0
 public ServicerDomainService(IServicerRepository servicerRepository, IServicerCache servicerCache)
 {
     _servicerRepository = servicerRepository;
     _servicerCache      = servicerCache;
 }