示例#1
0
        public IActionResult Index_policja()
        {
            ListAllVehiclesVM vm = new ListAllVehiclesVM()
            {
                Pojazdy = _pojazdService.Get()
            };

            return(View(vm));
        }
示例#2
0
        public IActionResult Index_Policja_Wyszukaj(string vin)
        {
            ListAllVehiclesVM vm = new ListAllVehiclesVM()
            {
                Pojazdy = _pojazdService.Search(vin)
            };

            return(View(vm));
        }