/// <summary>
 /// Initializes a new instance of the <see cref="AccountController"/> class.
 /// </summary>
 public AccountController()
 {
     this.privatBankManager = new PrivatBankManager();
 }
 public TaxesController(IOptions <PrivatBankConfig> pbConfig)
 {
     this.privatBankConfig  = pbConfig.Value;
     this.privatBankManager = new PrivatBankManager();
 }