Esempio n. 1
0
 public TeamController(YicaiyunContext context, IMapper mapper, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _mapper             = mapper;
     _hostingEnvironment = hostingEnvironment;
 }
Esempio n. 2
0
 public OrdersController(YicaiyunContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public RecipesController(YicaiyunContext context, IHttpContextAccessor httpContextAccessor, IMapper mapper)
 {
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
     _mapper = mapper;
 }
Esempio n. 4
0
 public ArticlesController(YicaiyunContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public CommonController(YicaiyunContext context)
 {
     _context = context;
 }