public IActionResult Post(PharmacyNotification pharmacyNotification)
        {
            bool isSuccessfullyAdded = _notificationService.Update(pharmacyNotification) != null;

            if (isSuccessfullyAdded)
            {
                return(Ok());
            }
            else
            {
                return(BadRequest());
            }
        }