Ejemplo n.º 1
0
        public void StateServiceTest()
        {
            ApplicationContextService service = new ApplicationContextService();
            var currentPageState = service.CurrentApplicationContext;

            Assert.IsNull(currentPageState);
            Assert.Pass();
        }
Ejemplo n.º 2
0
 private async Task DoOpenTrackingPage(string pageName, int context)
 {
     ApplicationContextService.OpenTrackingPage(pageName, context);
     await InvokeAsync(OnMenuClick);
 }
Ejemplo n.º 3
0
 private async Task DoOpenCatalogPage(string pageName)
 {
     ApplicationContextService.OpenLastOrNewCatalogPage(pageName);
     await InvokeAsync(OnMenuClick);
 }
Ejemplo n.º 4
0
 protected async Task DoOpenBatchRegistration()
 {
     ApplicationContextService.OpenBatchRegistrationPage(nameof(BatchRegistrationForm));
     await InvokeAsync(OnMenuClick);
 }