public AccountController(IRegistrationService registrationService,IAuthAndPayService authAndPayService)
 {
     this.registrationService = registrationService;
     this.authAndPayService = authAndPayService;
 }
 public SecurityController(ICryptoService cryptoService,IAuthAndPayService authAndPayService)
 {
     this.cryptoService = cryptoService;
     this.authAndPayService = authAndPayService;
 }
 //public WebAPIFacadController() : base() { }
 public WebAPIFacadController(IAuthAndPayService authAndPayService)
 {
     this.authAndPayService = authAndPayService;
 }