public InvoicesController(IInvoiceService invoiceService, ILoggedUserService loggedUserService, IBus publisher, IHttpUserService userService)
 {
     this.invoiceService    = invoiceService;
     this.loggedUserService = loggedUserService;
     this.publisher         = publisher;
     this.userService       = userService;
 }
 public BaseRequestAPIService(IHttpUserService httpUserService, IFileStorageService fileStorageService)
 {
     _httpUserService    = httpUserService;
     _fileStorageService = fileStorageService;
 }