public async Task <IActionResult> Put(int employeeId, NotificationSettingsDto notificationSettingsDto)
        {
            var isUpdated = await _notificationSettingsService.Update(employeeId, notificationSettingsDto);

            return(Ok(isUpdated));
        }