Ejemplo n.º 1
0
        public async Task Save(Notification notification, JsonElement json)
        {
            BackingStoreInfo storeInfo = await GetBackingStoreInfo(notification);

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

            await CalculateAndSaveReport(notification, storeInfo);
        }
Ejemplo n.º 2
0
 public void Save(Notification entity)
 {
     _notificationDal.Save(entity);
 }
Ejemplo n.º 3
0
 public void Save(Notification table)
 {
     _notificationDal.Save(table);
 }