public TblUsersController(mobileSurveyContext context)
 {
     _context = context;
 }
예제 #2
0
 public LoginService(mobileSurveyContext context)
 {
     _context = context;
 }
예제 #3
0
        public UserService(mobileSurveyContext context)
        {
            _context = context;

            _daoUser = new daoUser(context);
        }
 public TblQuestionsController(mobileSurveyContext context)
 {
     _context = context;
 }
예제 #5
0
 public SurveyController(mobileSurveyContext context)
 {
     _context = context;
 }
 public TblSurveysController(mobileSurveyContext context, ILogger <TblSurveysController> logger, IWebHostEnvironment environment)
 {
     _logger      = logger;
     _context     = context;
     _environment = environment;
 }
예제 #7
0
 public daoUser(mobileSurveyContext context)
 {
     _context = context;
 }
예제 #8
0
 public TblListsController(mobileSurveyContext context, ILogger <TblListsController> logger)
 {
     _logger  = logger;
     _context = context;
 }