public CommonComboController(ICodeTableService codeTableService)
 {
     //
     // TODO: 在此处添加构造函数逻辑
     //
     _codeTableService = codeTableService;
 }
Ejemplo n.º 2
0
 public CodeTablesController(ICodeTableService svs, IOptions <AppSettings> appSettings, DataContext dataContext)
 {
     this.svs          = svs;
     this._appSettings = appSettings.Value;
     this.dataContext  = dataContext;
 }
Ejemplo n.º 3
0
 public CommonComboViewComponent(ICodeTableService codeTableService)
 {
     _codeTableService = codeTableService;
 }