├── .gitignore └── Project ├── Podfile ├── Podfile.lock ├── ServiceOrientedArchitecture.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── ServiceOrientedArchitecture.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── ServiceOrientedArchitecture ├── AppDelegate └── AppDelegate.swift ├── Assets └── Assets.xcassets │ ├── AppIcon.appiconset │ └── Contents.json │ ├── Contents.json │ └── GoBack.imageset │ ├── Contents.json │ ├── GoBack.png │ ├── GoBack@2x.png │ └── GoBack@3x.png ├── Coordinator ├── BaseCoordinator │ ├── Base │ │ └── BaseCoordinator.swift │ ├── Enums │ │ ├── DeepLinkOption.swift │ │ └── LaunchInstructor.swift │ ├── Extensions │ │ └── ViewController+Coordinator.swift │ ├── Protocols │ │ ├── AuthCoordinatorOutput.swift │ │ ├── BaseViewControllerProtocol.swift │ │ ├── Coordinator.swift │ │ └── Presentable.swift │ └── Router │ │ └── Router.swift ├── Coordinators │ ├── ApplicationCoordinator.swift │ ├── AuthCoordinator.swift │ └── WalktroughCoordinator.swift └── Transitions │ └── FadeAnimator.swift ├── DependencyContainer ├── DependencyContainer.swift └── FactoryProtocolmp │ ├── AuthViewControllerFactoryImp.swift │ └── WalktroughViewControllerFactoryImp.swift ├── Extensions ├── Other │ └── DateFormatter.swift └── UI │ ├── UIButton.swift │ ├── UINavigationBar.swift │ ├── UIStoryboard.swift │ └── UIViewController.swift ├── Factory ├── CoordinatorFactory │ └── CoordinatorFactory.swift └── ViewControllerFactory │ └── ViewControllerFactory.swift ├── Info.plist ├── Models └── Networking │ ├── AlertMessage.swift │ └── NetworkError.swift ├── Networking ├── AlamofireUtils │ ├── ParameterEncoding.swift │ └── RequestItems.swift ├── ApiManager │ ├── ApiManager.swift │ └── ApiManagerRetrier.swift └── Endpoints │ └── EndPointType.swift ├── Services ├── NetworkingServices │ └── AuthNetworkServices.swift └── UserServices │ └── UserServices.swift ├── Stroyboards ├── Auth.storyboard ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Events.storyboard ├── Payment.storyboard ├── Profile.storyboard ├── Settings.storyboard ├── SideMenu.storyboard └── Walktrough.storyboard ├── Utils ├── Constants │ └── Constants.swift ├── Dynamics │ ├── Dynamic.swift │ ├── DynamicArray.swift │ └── DynamicAsync.swift └── GenericUtils.swift ├── ViewControllers ├── Auth │ ├── ChooseLoginRegister │ │ ├── ChooseLoginRegisterModels.swift │ │ ├── ChooseLoginRegisterViewController.swift │ │ └── ChooseLoginRegisterViewModel.swift │ ├── Login │ │ ├── LoginModels.swift │ │ ├── LoginViewController.swift │ │ └── LoginViewModel.swift │ ├── Register │ │ ├── RegisterModels.swift │ │ ├── RegisterViewController.swift │ │ └── RegisterViewModel.swift │ └── TermsAndConditions │ │ ├── TermsAndConditionsModels.swift │ │ ├── TermsAndConditionsViewController.swift │ │ └── TermsAndConditionsViewModel.swift ├── Base │ ├── ViewController │ │ └── BaseViewController.swift │ └── ViewModel │ │ └── BaseViewModel.swift ├── NavigationController │ └── CoordinatorNavigationController.swift └── Walktrough │ ├── WalktroughModels.swift │ ├── WalktroughViewController.swift │ └── WalktroughViewModel.swift └── Views └── Buttons └── CustomBackButton.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/.gitignore -------------------------------------------------------------------------------- /Project/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/Podfile -------------------------------------------------------------------------------- /Project/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/Podfile.lock -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/Contents.json -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/GoBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/GoBack.png -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/GoBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/GoBack@2x.png -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/GoBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Assets/Assets.xcassets/GoBack.imageset/GoBack@3x.png -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Base/BaseCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Base/BaseCoordinator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/DeepLinkOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/DeepLinkOption.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/LaunchInstructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/LaunchInstructor.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Extensions/ViewController+Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Extensions/ViewController+Coordinator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/AuthCoordinatorOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/AuthCoordinatorOutput.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/BaseViewControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/BaseViewControllerProtocol.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Coordinator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Presentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Presentable.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Router/Router.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/Coordinators/ApplicationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/Coordinators/ApplicationCoordinator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/Coordinators/AuthCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/Coordinators/AuthCoordinator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/Coordinators/WalktroughCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/Coordinators/WalktroughCoordinator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Coordinator/Transitions/FadeAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Coordinator/Transitions/FadeAnimator.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/DependencyContainer/DependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/DependencyContainer/DependencyContainer.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/AuthViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/AuthViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/WalktroughViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/WalktroughViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Extensions/Other/DateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Extensions/Other/DateFormatter.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Extensions/UI/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Extensions/UI/UIButton.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Extensions/UI/UINavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Extensions/UI/UINavigationBar.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Extensions/UI/UIStoryboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Extensions/UI/UIStoryboard.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Extensions/UI/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Extensions/UI/UIViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Factory/CoordinatorFactory/CoordinatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Factory/CoordinatorFactory/CoordinatorFactory.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Factory/ViewControllerFactory/ViewControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Factory/ViewControllerFactory/ViewControllerFactory.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Info.plist -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Models/Networking/AlertMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Models/Networking/AlertMessage.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Models/Networking/NetworkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Models/Networking/NetworkError.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Networking/AlamofireUtils/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Networking/AlamofireUtils/ParameterEncoding.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Networking/AlamofireUtils/RequestItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Networking/AlamofireUtils/RequestItems.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Networking/ApiManager/ApiManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Networking/ApiManager/ApiManager.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Networking/ApiManager/ApiManagerRetrier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Networking/ApiManager/ApiManagerRetrier.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Networking/Endpoints/EndPointType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Networking/Endpoints/EndPointType.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Services/NetworkingServices/AuthNetworkServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Services/NetworkingServices/AuthNetworkServices.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Services/UserServices/UserServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Services/UserServices/UserServices.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Auth.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Auth.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Events.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Events.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Payment.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Payment.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Profile.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Profile.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Settings.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/SideMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/SideMenu.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Stroyboards/Walktrough.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Stroyboards/Walktrough.storyboard -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Utils/Constants/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Utils/Constants/Constants.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Utils/Dynamics/Dynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Utils/Dynamics/Dynamic.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Utils/Dynamics/DynamicArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Utils/Dynamics/DynamicArray.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Utils/Dynamics/DynamicAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Utils/Dynamics/DynamicAsync.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Utils/GenericUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Utils/GenericUtils.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterModels.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewModel.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginModels.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterModels.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewModel.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/TermsAndConditions/TermsAndConditionsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/TermsAndConditions/TermsAndConditionsModels.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/TermsAndConditions/TermsAndConditionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/TermsAndConditions/TermsAndConditionsViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Auth/TermsAndConditions/TermsAndConditionsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Auth/TermsAndConditions/TermsAndConditionsViewModel.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Base/ViewController/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Base/ViewController/BaseViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Base/ViewModel/BaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Base/ViewModel/BaseViewModel.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/NavigationController/CoordinatorNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/NavigationController/CoordinatorNavigationController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughModels.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewController.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewModel.swift -------------------------------------------------------------------------------- /Project/ServiceOrientedArchitecture/Views/Buttons/CustomBackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/CoordinatorBack/HEAD/Project/ServiceOrientedArchitecture/Views/Buttons/CustomBackButton.swift --------------------------------------------------------------------------------