public AuthController(IDataProtectionProvider dataProtectionProvider, IJwtFactory jwtFactory, ICustomersBL customersBl, IOptions <JwtIssuerOptions> jwtOptions) { _dataProtector = dataProtectionProvider.CreateProtector(Constants.DataProtectorPurpose); _jwtFactory = jwtFactory; _customersBL = customersBl; _jwtOptions = jwtOptions.Value; }
public CustomerController(ICustomersBL _repo) { this.repo = _repo; }
public CustomersController(ICustomersBL customerBL) { _customerBL = customerBL; }