2023-04-11 19:36:55 +02:00
|
|
|
//
|
|
|
|
// LocationsAddViewController.swift
|
|
|
|
// Locations
|
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 11/04/2023.
|
|
|
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Core
|
|
|
|
import UIKit
|
|
|
|
|
2023-04-11 21:36:16 +02:00
|
|
|
class LocationsAddViewController: UIViewController {
|
2023-04-11 19:36:55 +02:00
|
|
|
|
|
|
|
// MARK: Properties
|
|
|
|
|
2023-04-11 21:36:16 +02:00
|
|
|
var viewModel: LocationsAddViewModel
|
2023-04-11 19:36:55 +02:00
|
|
|
|
|
|
|
// MARK: Initialisers
|
|
|
|
|
2023-04-11 21:36:16 +02:00
|
|
|
init(viewModel: LocationsAddViewModel) {
|
2023-04-11 19:36:55 +02:00
|
|
|
self.viewModel = viewModel
|
|
|
|
|
|
|
|
super.init(nibName: nil, bundle: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
fatalError("init(coder:) has not been implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: UIViewController
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
title = "Location Add"
|
|
|
|
|
|
|
|
view.backgroundColor = .white
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|