public AdmUsersController(DccyDbContext context, IEncryptionAndDecryption encryptionAndDecryption, IOptions <AppSetting> appSetting, IToolUnit toolUnit) { _context = context; _encryptionAndDecryption = encryptionAndDecryption; _appSetting = appSetting.Value; _toolUnit = toolUnit; }
public LoginController(DccyDbContext dbContext, IToolUnit toolUnit, IEncryptionAndDecryption encryptionAndDecryption, IOptions <AppSetting> options) { _dbContext = dbContext; _toolUnit = toolUnit; _encryptionAndDecryption = encryptionAndDecryption; _appSetting = options.Value; }
public AdmJurisdictionsController(DccyDbContext context, IDataTree dataTree, IToolUnit toolUnit) { _context = context; _toolUnit = toolUnit; _dataTree = dataTree; }
public AdmRolesController(DccyDbContext context, IToolUnit toolUnit, IDataTree dataTree) { _context = context; _toolUnit = toolUnit; _dataTree = dataTree; }
public AdmDepartmentsController(DccyDbContext context, IDataTree dataTree, IToolUnit toolUnit) { _context = context; _dataTree = dataTree; _toolUnit = toolUnit; }