public UserDetailsController(PhoenixContext _context, IMapper _mapper, IFileStorageService fileStorageService)
 {
     this.context            = _context;
     this.fileStorageService = fileStorageService;
     this.mapper             = _mapper;
     UB = new UserBiz(context);
 }
 public NotificationController(PhoenixContext _context, IMapper _mapper)
 {
     this.context = _context;
     this.mapper  = _mapper;
     NB           = new NotificationBiz(context);
     UB           = new UserBiz(context);
 }
 public TransactionController(PhoenixContext _context, IMapper _mapper)
 {
     this.context = _context;
     this.mapper  = _mapper;
     IB           = new ItemBiz(context);
     TB           = new TransactionBiz(context);
     UB           = new UserBiz(context);
 }
 public AskBoardController(PhoenixContext _context, IMapper _mapper, IFileStorageService fileStorageService)
 {
     this.context            = _context;
     this.fileStorageService = fileStorageService;
     this.mapper             = _mapper;
     AB = new AskBoardBiz(context, fileStorageService);
     UB = new UserBiz(context);
 }
Exemplo n.º 5
0
 public ItemController(PhoenixContext _context, IFileStorageService fileStorageService, IMapper _mapper)
 {
     this.context            = _context;
     this.fileStorageService = fileStorageService;
     this.mapper             = _mapper;
     IB = new ItemBiz(context, fileStorageService);
     UB = new UserBiz(context);
 }
Exemplo n.º 6
0
 public OrderService(PhoenixContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public ProductService(PhoenixContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public ItemBiz(PhoenixContext _context, IFileStorageService _fileStorageService)
 {
     this.context       = _context;
     fileStorageService = _fileStorageService;
 }
Exemplo n.º 9
0
 public ItemBiz(PhoenixContext _context)
 {
     this.context = _context;
 }
Exemplo n.º 10
0
 public CustomerService(PhoenixContext context)
 {
     _context = context;
 }
 public AdminController(PhoenixContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public LookupController(PhoenixContext context, IMapper mapper, IFileStorageService fileStorageService)
 {
     this.context            = context;
     this.mapper             = mapper;
     this.fileStorageService = fileStorageService;
 }
Exemplo n.º 13
0
 public SupplierService(PhoenixContext context)
 {
     _context = context;
 }
Exemplo n.º 14
0
 public UserBiz(PhoenixContext _context)
 {
     this.context = _context;
 }
Exemplo n.º 15
0
 public NotificationBiz(PhoenixContext _context)
 {
     this.context = _context;
 }
Exemplo n.º 16
0
 public PhoenixContext Init()
 {
     return dbContext ?? (dbContext = new PhoenixContext());
 }
Exemplo n.º 17
0
 public TransactionBiz(PhoenixContext _context)
 {
     this.context = _context;
 }