├── .gitignore ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── MBProgressHUD │ ├── Info.plist │ ├── MBProgressHUD-dummy.m │ ├── MBProgressHUD-prefix.pch │ ├── MBProgressHUD-umbrella.h │ ├── MBProgressHUD.modulemap │ └── MBProgressHUD.xcconfig │ └── Pods-ServiceOrientedArchitecture │ ├── Info.plist │ ├── Pods-ServiceOrientedArchitecture-acknowledgements.markdown │ ├── Pods-ServiceOrientedArchitecture-acknowledgements.plist │ ├── Pods-ServiceOrientedArchitecture-dummy.m │ ├── Pods-ServiceOrientedArchitecture-frameworks.sh │ ├── Pods-ServiceOrientedArchitecture-resources.sh │ ├── Pods-ServiceOrientedArchitecture-umbrella.h │ ├── Pods-ServiceOrientedArchitecture.debug.xcconfig │ ├── Pods-ServiceOrientedArchitecture.modulemap │ └── Pods-ServiceOrientedArchitecture.release.xcconfig ├── 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 ├── 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 │ ├── EventsCoordinator.swift │ ├── PaymentCoordinator.swift │ ├── ProfileCoordinator.swift │ ├── SettingsCoordinator.swift │ ├── SideMenuCoordinator.swift │ └── WalktroughCoordinator.swift └── Transitions │ └── FadeAnimator.swift ├── DependencyContainer ├── DependencyContainer.swift └── FactoryProtocolmp │ ├── AuthViewControllerFactoryImp.swift │ ├── EventsViewControllerFactoryImp.swift │ ├── PaymentViewControllerFactoryImp.swift │ ├── ProfileViewControllerFactoryImp.swift │ ├── SettingsViewControllerFactoryImp.swift │ ├── SideMenuViewControllerFactoryImp.swift │ └── WalktroughViewControllerFactoryImp.swift ├── Extensions ├── Other │ └── DateFormatter.swift └── UI │ ├── 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 │ ├── EventNetworkServices.swift │ └── UserNetworkServices.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 ├── Base │ └── BaseViewModel.swift ├── Events │ ├── EventDetails │ │ ├── EventDetailsModels.swift │ │ ├── EventDetailsViewController.swift │ │ └── EventDetailsViewModel.swift │ └── EventsList │ │ ├── EventsListModels.swift │ │ ├── EventsListViewController.swift │ │ └── EventsListViewModel.swift ├── Payment │ ├── AddPaymentOption │ │ ├── AddPaymentOptionModels.swift │ │ ├── AddPaymentOptionViewController.swift │ │ └── AddPaymentOptionViewModel.swift │ └── PaymentOptions │ │ ├── PaymentOptionsModels.swift │ │ ├── PaymentOptionsViewController.swift │ │ └── PaymentOptionsViewModel.swift ├── Profile │ ├── BecomeAMember │ │ ├── BecomeAMemberModels.swift │ │ ├── BecomeAMemberViewController.swift │ │ └── BecomeAMemberViewModel.swift │ └── UserProfile │ │ ├── UserProfileModels.swift │ │ ├── UserProfileViewController.swift │ │ └── UserProfileViewModel.swift ├── Settings │ └── SettingsOptions │ │ ├── SettingsOptionsModels.swift │ │ ├── SettingsOptionsViewController.swift │ │ └── SettingsOptionsViewModel.swift ├── SideMenu │ ├── SideMenuModels.swift │ ├── SideMenuViewController.swift │ └── SideMenuViewModel.swift └── Walktrough │ ├── WalktroughModels.swift │ ├── WalktroughViewController.swift │ └── WalktroughViewModel.swift └── Views └── TableViewCells └── EventTableViewCell ├── EventTableViewCell.swift └── EventTableViewCell.xib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/MBProgressHUD/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/Pods/Target Support Files/Pods-ServiceOrientedArchitecture/Pods-ServiceOrientedArchitecture.release.xcconfig -------------------------------------------------------------------------------- /ServiceOrientedArchitecture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ServiceOrientedArchitecture.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ServiceOrientedArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Base/BaseCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Base/BaseCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/DeepLinkOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/DeepLinkOption.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/LaunchInstructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Enums/LaunchInstructor.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Extensions/ViewController+Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Extensions/ViewController+Coordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/AuthCoordinatorOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/AuthCoordinatorOutput.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/BaseViewControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/BaseViewControllerProtocol.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Coordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Presentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Protocols/Presentable.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/BaseCoordinator/Router/Router.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/ApplicationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/ApplicationCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/AuthCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/AuthCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/EventsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/EventsCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/PaymentCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/PaymentCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/ProfileCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/ProfileCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/SettingsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/SettingsCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/SideMenuCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/SideMenuCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Coordinators/WalktroughCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Coordinators/WalktroughCoordinator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Coordinator/Transitions/FadeAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Coordinator/Transitions/FadeAnimator.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/DependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/DependencyContainer.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/AuthViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/AuthViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/EventsViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/EventsViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/PaymentViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/PaymentViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/ProfileViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/ProfileViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/SettingsViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/SettingsViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/SideMenuViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/SideMenuViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/WalktroughViewControllerFactoryImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/DependencyContainer/FactoryProtocolmp/WalktroughViewControllerFactoryImp.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Extensions/Other/DateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Extensions/Other/DateFormatter.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Extensions/UI/UIStoryboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Extensions/UI/UIStoryboard.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Extensions/UI/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Extensions/UI/UIViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Factory/CoordinatorFactory/CoordinatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Factory/CoordinatorFactory/CoordinatorFactory.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Factory/ViewControllerFactory/ViewControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Factory/ViewControllerFactory/ViewControllerFactory.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Info.plist -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Models/Networking/AlertMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Models/Networking/AlertMessage.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Models/Networking/NetworkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Models/Networking/NetworkError.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Networking/AlamofireUtils/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Networking/AlamofireUtils/ParameterEncoding.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Networking/AlamofireUtils/RequestItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Networking/AlamofireUtils/RequestItems.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Networking/ApiManager/ApiManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Networking/ApiManager/ApiManager.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Networking/ApiManager/ApiManagerRetrier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Networking/ApiManager/ApiManagerRetrier.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Networking/Endpoints/EndPointType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Networking/Endpoints/EndPointType.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Services/NetworkingServices/AuthNetworkServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Services/NetworkingServices/AuthNetworkServices.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Services/NetworkingServices/EventNetworkServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Services/NetworkingServices/EventNetworkServices.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Services/NetworkingServices/UserNetworkServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Services/NetworkingServices/UserNetworkServices.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Services/UserServices/UserServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Services/UserServices/UserServices.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Auth.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Auth.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Events.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Events.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Payment.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Payment.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Profile.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Profile.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Settings.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/SideMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/SideMenu.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Stroyboards/Walktrough.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Stroyboards/Walktrough.storyboard -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Utils/Constants/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Utils/Constants/Constants.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Utils/Dynamics/Dynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Utils/Dynamics/Dynamic.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Utils/Dynamics/DynamicArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Utils/Dynamics/DynamicArray.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Utils/Dynamics/DynamicAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Utils/Dynamics/DynamicAsync.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Utils/GenericUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Utils/GenericUtils.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/ChooseLoginRegister/ChooseLoginRegisterViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Auth/Register/RegisterViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Base/BaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Base/BaseViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Events/EventDetails/EventDetailsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Events/EventDetails/EventDetailsModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Events/EventDetails/EventDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Events/EventDetails/EventDetailsViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Events/EventDetails/EventDetailsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Events/EventDetails/EventDetailsViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Events/EventsList/EventsListModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Events/EventsList/EventsListModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Events/EventsList/EventsListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Events/EventsList/EventsListViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Events/EventsList/EventsListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Events/EventsList/EventsListViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Payment/AddPaymentOption/AddPaymentOptionModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Payment/AddPaymentOption/AddPaymentOptionModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Payment/AddPaymentOption/AddPaymentOptionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Payment/AddPaymentOption/AddPaymentOptionViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Payment/AddPaymentOption/AddPaymentOptionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Payment/AddPaymentOption/AddPaymentOptionViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Payment/PaymentOptions/PaymentOptionsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Payment/PaymentOptions/PaymentOptionsModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Payment/PaymentOptions/PaymentOptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Payment/PaymentOptions/PaymentOptionsViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Payment/PaymentOptions/PaymentOptionsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Payment/PaymentOptions/PaymentOptionsViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Profile/BecomeAMember/BecomeAMemberModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Profile/BecomeAMember/BecomeAMemberModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Profile/BecomeAMember/BecomeAMemberViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Profile/BecomeAMember/BecomeAMemberViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Profile/BecomeAMember/BecomeAMemberViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Profile/BecomeAMember/BecomeAMemberViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Profile/UserProfile/UserProfileModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Profile/UserProfile/UserProfileModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Profile/UserProfile/UserProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Profile/UserProfile/UserProfileViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Profile/UserProfile/UserProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Profile/UserProfile/UserProfileViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Settings/SettingsOptions/SettingsOptionsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Settings/SettingsOptions/SettingsOptionsModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Settings/SettingsOptions/SettingsOptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Settings/SettingsOptions/SettingsOptionsViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Settings/SettingsOptions/SettingsOptionsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Settings/SettingsOptions/SettingsOptionsViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/SideMenu/SideMenuModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/SideMenu/SideMenuModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/SideMenu/SideMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/SideMenu/SideMenuViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/SideMenu/SideMenuViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/SideMenu/SideMenuViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughModels.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewController.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/ViewControllers/Walktrough/WalktroughViewModel.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Views/TableViewCells/EventTableViewCell/EventTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Views/TableViewCells/EventTableViewCell/EventTableViewCell.swift -------------------------------------------------------------------------------- /ServiceOrientedArchitecture/Views/TableViewCells/EventTableViewCell/EventTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pakisha/Medium6/HEAD/ServiceOrientedArchitecture/Views/TableViewCells/EventTableViewCell/EventTableViewCell.xib --------------------------------------------------------------------------------