public MiUserController(MIContext _context)
 {
     this._context = _context;
 }
예제 #2
0
 public QueryRabbitMqController(MIContext _context)
 {
     this._context = _context;
 }
 public RabbitMQManagerController(MIContext _context, IEventBus _eventBus, IConfiguration Configuration)
 {
     this._context      = _context;
     this._eventBus     = _eventBus;
     this.Configuration = Configuration;
 }
 public QueryPictureController(MIContext context)
 {
     _context = context;
 }
 public ShopCarOperationController(MIContext _context, IAccountService accountService, ILogger <ShopCarOperationController> logger)
 {
     this._context       = _context;
     this.accountService = accountService;
     this.logger         = logger;
 }