Ejemplo n.º 1
0
 public ServiceDataViewController()
 {
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
     _assignmentVm      = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _serviceData       = BuildServiceData();
     BuildInterface();
 }
Ejemplo n.º 2
0
 public AssignmentHistoryView(CGRect bounds)
 {
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
     _assignmentVm      = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _bounds            = bounds;
     BuildInterface();
 }
 public ActivityStartViewController()
 {
     _navigationService              = ServiceLocator.Current.GetInstance <INavigationService>();
     _assignmentVm                   = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _assignmentVm.RecordingChanged += OnRecordingChanged;
     _assignmentVm.TimerChanged     += OnTimerChanged;
     _networkStatus                  = Reachability.InternetConnectionStatus();
     BuildInterface();
 }
Ejemplo n.º 4
0
 public ActivityTableSource()
 {
     _assignmentVm      = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
 }
 public AssignmentViewController()
 {
     _assignmentVm      = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
 }
Ejemplo n.º 6
0
 public DocumentsViewController()
 {
     _assignmentVm      = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
     BuildInterface();
 }
Ejemplo n.º 7
0
 public ChartAssignmentsDelegate()
 {
     _assignmentVm      = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _reportVm          = ServiceLocator.Current.GetInstance <ReportVm>();
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
 }
Ejemplo n.º 8
0
 public AssignmentDataView(CGRect bounds)
 {
     _assignmentVm = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _bounds       = bounds;
     BuildInterface();
 }
Ejemplo n.º 9
0
 public DocumentTableSource(List <Document> documents)
 {
     _assignmentVm = ServiceLocator.Current.GetInstance <AssignmentVm>();
     _documents    = documents;
 }