/// <summary>
        /// Event when the address is clicked
        /// </summary>
        partial void Address(FieldService.iOS.TextButton sender)
        {
            var menuViewModel = ServiceContainer.Resolve <MenuViewModel>();

            menuViewModel.MenuIndex = SectionIndex.Maps;
            assignmentViewModel.SelectedAssignment = assignment;
            controller.PerformSegue("AssignmentDetails", controller);
        }
        /// <summary>
        /// Event when the address is clicked on the active assignment
        /// </summary>
        partial void Address(FieldService.iOS.TextButton sender)
        {
            //Change to maps
            var menuViewModel = ServiceContainer.Resolve <MenuViewModel>();

            menuViewModel.MenuIndex = SectionIndex.Maps;
            assignmentViewModel.SelectedAssignment = assignmentViewModel.ActiveAssignment;
            PerformSegue("AssignmentDetails", this);
        }
Esempio n. 3
0
        /// <summary>
        /// Event when address is clicked
        /// </summary>
        partial void Address(FieldService.iOS.TextButton sender)
        {
            var menuViewModel = ServiceContainer.Resolve <MenuViewModel>();

            menuViewModel.MenuIndex = SectionIndex.Maps;
        }
Esempio n. 4
0
 partial void Address(FieldService.iOS.TextButton sender);