Ejemplo n.º 1
0
        public void IssueMovie_AnotherTry()
        {
            DashboardScreen           dashboardScreen = new DashboardScreen(window, application);
            Customer                  customer        = new Customer("Rakesh Kumar", "26", "34343545");
            CreateCustomerStep1Screen step1Screen     = dashboardScreen.LaunchCreateCustomer();

            step1Screen.FillAndNext(customer);
        }
        public void CreateCustomerWithoutEntities()
        {
            DashboardScreen           dashboardScreen = new DashboardScreen(window, application);
            CreateCustomerStep1Screen step1Screen     = dashboardScreen.LaunchCreateCustomer();

            step1Screen.FillAndNext("Rakesh Kumar", "26");
            CreateCustomerStep2Screen step2Screen = new CreateCustomerStep2Screen(window, application);

            step2Screen.Fill("34343545");
        }