public async Task <ActionResult <ProductInstallmentsViewModel> > GetInstallmentsCondictionsByProduct([FromBody] ProductInstallments model)
        {
            var result = await _productApplicationService.GetInstallmentsCondictionsByProduct(model);

            return(CustomResponse(result));
        }