mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-04 22:04:59 +00:00
32 lines
958 B
Swift
32 lines
958 B
Swift
//
|
|
// Encounter+EncounterRecord.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import CoreData
|
|
|
|
extension EncounterRecord {
|
|
|
|
func saveToCoreData() {
|
|
DispatchQueue.main.async {
|
|
guard let appDelegate =
|
|
UIApplication.shared.delegate as? AppDelegate else {
|
|
return
|
|
}
|
|
let managedContext = appDelegate.persistentContainer.viewContext
|
|
let entity = NSEntityDescription.entity(forEntityName: "Encounter", in: managedContext)!
|
|
let encounter = Encounter(entity: entity, insertInto: managedContext)
|
|
encounter.set(encounterStruct: self)
|
|
do {
|
|
try managedContext.save()
|
|
} catch {
|
|
print("Could not save. \(error)")
|
|
}
|
|
NotificationCenter.default.post(name: .encounterRecorded, object: nil)
|
|
}
|
|
}
|
|
|
|
}
|