This repository contains a sample app for loading Customer's Records.
The app is currently able to load Customers from file, and show it in list form.
- When the app loads, it will load the Customers from file, and show them in the tableView.
- The customers will be filtered, by the distance from target office location.
- The distance will be calculated based on customer's and target office's Latitude and Longitude.
- Create new project based on single view app
- Create folders for MVVM pattern
- Add CustomersViewController and Design the UI layout to show Customers List
- Add Customers's DataLoader
- Add DistanceCalculator
- Add Models and ViewModels, that will show the Customer List at CustomersViewController
- Add Filter feature to CustomersViewModel
- Add Unit Tests to test the process