public async Task Save(Notification notification, JsonElement json) { BackingStoreInfo storeInfo = await GetBackingStoreInfo(notification); await _notificationDal.Save(storeInfo, json.GetRawText()); await CalculateAndSaveReport(notification, storeInfo); }
public void Save(Notification entity) { _notificationDal.Save(entity); }
public void Save(Notification table) { _notificationDal.Save(table); }