示例#1
0
        public ActionResult InstalledInWorkstations(int id)
        {
            FoxWorkStationView dataForView = new FoxWorkStationView()
            {
                WorkStationsBySoftwareId = wkService.GetWorkStationsBySoftwareId(id)
            };


            return(View(dataForView));
        }
示例#2
0
        // GET: FoxWorkStations
        public ActionResult Index(string search)
        {
            FoxWorkStationView dataForView = new FoxWorkStationView()
            {
                WPList    = wkService.GetWorkStationsByType("WP"),
                AWList    = wkService.GetWorkStationsByType("AW"),
                OtherList = wkService.GetWorkStationsByType("CPU")
            };

            return(View(dataForView));
        }