public EbBaseService(IEbConnectionFactory _dbf, IEbStaticFileClient _sfc, IMessageProducer _mqp, IMessageQueueClient _mqc)
 {
     this.EbConnectionFactory = _dbf as EbConnectionFactory;
     this.FileClient          = _sfc as EbStaticFileClient;
     this.MessageProducer3    = _mqp as RabbitMqProducer;
     this.MessageQueueClient  = _mqc as RabbitMqQueueClient;
 }
 public EbMqBaseService(IEbConnectionFactory _dbf, IEbStaticFileClient _sfc, IServiceClient _ssclient, IMessageProducer _mqp)
 {
     this.EbConnectionFactory = _dbf as EbConnectionFactory;
     this.ServiceStackClient  = _ssclient as JsonServiceClient;
     this.FileClient          = _sfc as EbStaticFileClient;
     this.MessageProducer3    = _mqp as RabbitMqProducer;
 }
 public EbBaseService(IEbConnectionFactory _dbf, IEbStaticFileClient _sfc)
 {
     this.EbConnectionFactory = _dbf as EbConnectionFactory;
     this.FileClient          = _sfc as EbStaticFileClient;
 }
예제 #4
0
 public PdfMQService(IEbConnectionFactory _dbf, IEbStaticFileClient _sfc, IMessageProducer _mqp, IMessageQueueClient _mqc, IServiceClient _ssclient, IEbServerEventClient _sec) : base(_dbf, _sfc, _mqp, _mqc, _ssclient, _sec)
 {
 }
예제 #5
0
 public StaticFileExtController(IEbStaticFileClient _sfc) : base(_sfc)
 {
 }
 public ApiInternalService(IEbConnectionFactory _dbf, IEbStaticFileClient _sfc, IServiceClient _ssclient, IMessageProducer _mqp) : base(_dbf, _sfc, _ssclient, _mqp)
 {
 }
예제 #7
0
 public EbFileBaseController(IEbStaticFileClient _sfc)
 {
     this.FileClient = _sfc as EbStaticFileClient;
 }