public UsersController(IUserService userService, AmisContext context, IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _userService = userService;
     _context     = context;
     _appSettings = appSettings.Value;
     _mapper      = mapper;
 }
 public FieldController(AmisContext context)
 {
     _context = context;
 }
 public OptionController(AmisContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public PhaseController(AmisContext context)
 {
     _context = context;
 }
Ejemplo n.º 5
0
 public TestController(AmisContext context)
 {
     _context = context;
 }
 public ProcessController(AmisContext context)
 {
     _context = context;
 }