Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hk14004 committed Apr 10, 2023
1 parent 9eea8ec commit a168474
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CatalogViewer/Config/DI/Dependencies + CoreData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Swinject
import CoreData
import DevTools
import DevToolsCore
import DevToolsCoreData


Expand Down
2 changes: 1 addition & 1 deletion CatalogViewer/Config/DI/Dependencies + Realm.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Swinject
import CoreData
//import RealmSwift
//import DevToolsRealm
import DevTools
import DevToolsCore

//let DI_REALM: (Container)->() = { container in
//
Expand Down
2 changes: 1 addition & 1 deletion CatalogViewer/Config/DI/Dependencies.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Foundation
import Swinject
import Moya
import DevToolsNetworking
import DevTools
import DevToolsCore

let DI: Container = {
let container = Container()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore
import CoreData

extension Category_CD: PersistedModelProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore
import CoreData

extension ProductVariant_CD: PersistedModelProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore
import CoreData

extension Product_CD: PersistedModelProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//


import DevTools
import DevToolsCore

extension Category_DB: PersistedModelProtocol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore

extension ProductVariant_DB: PersistedModelProtocol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore

extension Product_DB: PersistedModelProtocol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore
import CoreData

extension Category: PersistableDomainModelProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore
import CoreData

extension Product: PersistableDomainModelProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Hardijs Ķirsis on 25/03/2023.
//

import DevTools
import DevToolsCore
import CoreData

extension ProductVariant: PersistableDomainModelProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation
import Combine
import DevTools
import DevToolsCore

protocol CategoryRepositoryProtocol {

Expand Down Expand Up @@ -40,7 +40,7 @@ class CategoryRepository<CategoryStore: PersistedLayerInterface> where CategoryS
}

extension CategoryRepository: CategoryRepositoryProtocol {
func getCategoryPage(pageOptions: DevTools.PagedRequestOptions) async -> DevTools.PagedResult<Category> {
func getCategoryPage(pageOptions: PagedRequestOptions) async -> PagedResult<Category> {
let key = Category_CD.PersistedField.title.rawValue
return await categoryStore.getListPage(pageOptions: pageOptions,
predicate: NSPredicate(value: true),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation
import Combine
import DevTools
import DevToolsCore

protocol ProductRepositoryProtocol {

Expand Down

0 comments on commit a168474

Please sign in to comment.