示例#1
0
 public AccesscodeController(
     IConfiguration configuration,
     AspserviceDbContext dbContext,
     ISMSService smsService
     ) : base(configuration)
 {
     _configuration = configuration;
     _DbContext     = dbContext;
     _SMSService    = smsService;
 }
示例#2
0
 public AspserviceDb(AspserviceDbContext dbContext)
 {
     _DbContext = dbContext;
 }