示例#1
0
 public AuthController(WebPOSContext context, IUserService userService, IMapper mapper, IOptions <ApplicationSettings> appSettings)
 {
     this.context     = context;
     this.userService = userService;
     this.mapper      = mapper;
     this.appSettings = appSettings.Value;
 }
示例#2
0
 public FunctionButtonService(WebPOSContext context)
 {
     this.context = context;
 }
示例#3
0
 public TableService(WebPOSContext context)
 {
     this.context = context;
 }
示例#4
0
 public UserService(WebPOSContext context)
 {
     this.context = context;
 }