public async Task Save(Notification notification, JsonElement json)
        {
            BackingStoreInfo storeInfo = await GetBackingStoreInfo(notification);

            await _notificationDal.Save(storeInfo, json.GetRawText());

            await CalculateAndSaveReport(notification, storeInfo);
        }
示例#2
0
 public void Save(Notification entity)
 {
     _notificationDal.Save(entity);
 }
示例#3
0
 public void Save(Notification table)
 {
     _notificationDal.Save(table);
 }