mirror of
https://github.com/Mueller-Patrick/DHBW-Service-App.git
synced 2024-11-01 08:53:58 +00:00
Patrick Müller
f50ba8f19d
- Also adding lecturer entity and relationship between event and lecturers. - Preparation for CoreData refactoring
26 lines
569 B
Swift
26 lines
569 B
Swift
//
|
|
// Lecturer+CoreDataClass.swift
|
|
// DHBW-Service
|
|
//
|
|
// Created by Patrick Müller on 10.02.21.
|
|
//
|
|
//
|
|
|
|
import Foundation
|
|
import CoreData
|
|
|
|
@objc(Lecturer)
|
|
public class Lecturer: NSManagedObject {
|
|
@nonobjc public class func getAll() -> [Lecturer] {
|
|
let managedContext =
|
|
PersistenceController.shared.context
|
|
|
|
do {
|
|
return try managedContext.fetch(Lecturer.fetchRequest())
|
|
} catch let error as NSError {
|
|
print("Could not fetch. \(error), \(error.userInfo)")
|
|
return []
|
|
}
|
|
}
|
|
}
|