public IHttpActionResult GetNotificationSetting(NotificationSettingType notificationSettingType) { return(Ok(SetUpService.GetNotificationSetting(notificationSettingType))); }
public async Task <IHttpActionResult> NotificationSettingGet(NotificationSettingType id) { return(Ok(await WebApiService.Instance.GetAsync <NotificationSettingParentViewModel>($"setup/NotificationSetting/get?notificationSettingType={id}"))); }