public AccountController(SignInManager <IdentityUser> signInManager, UserManager <IdentityUser> userManager, IFirmAccoutRepozytory firmAccountRepozytory)
 {
     _signInManager         = signInManager;
     _userManager           = userManager;
     _firmAccountRepozytory = firmAccountRepozytory;
 }
 public TokenController(ITokenRepozytory tokenRepozytory, IFirmAccoutRepozytory firmAccoutRepozytory)
 {
     _firmAccoutRepozytory = firmAccoutRepozytory;
     _tokenRepozytory      = tokenRepozytory;
 }