public SubscriptionController(ApplicationContext db, UserService userService,
                               KassaPaymentService kassaPaymentService)
 {
     _db                  = db;
     _userService         = userService;
     _kassaPaymentService = kassaPaymentService;
 }
 public PaymentController(KassaPaymentService kassaPaymentService, SaleService saleService)
 {
     _kassaPaymentService = kassaPaymentService;
     _saleService         = saleService;
 }