Exemplo n.º 1
0
        public ActionResult Index()
        {
            //test
            EmployeeService employeeservice = new EmployeeService();

            ViewBag.namelist = employeeservice.GetName();
            ShipperService shipperservice = new ShipperService();

            ViewBag.shipperlist = shipperservice.GetShipper();
            return(View());
        }
Exemplo n.º 2
0
        public ActionResult InserOrder()
        {
            EmployeeService employeeservice = new EmployeeService();

            ViewBag.namelist = employeeservice.GetName();
            ShipperService shipperservice = new ShipperService();

            ViewBag.shipperlist = shipperservice.GetShipper();
            CustomerService customerservice = new CustomerService();

            ViewBag.Customerlist = customerservice.GetCustomer();
            return(View());
        }