Exemplo n.º 1
0
        public IActionResult Index_policja()
        {
            ListAllClientsVM vm = new ListAllClientsVM()
            {
                Kierowcy = _kierowcaService.Get()
            };

            return(View(vm));
        }
Exemplo n.º 2
0
        public IActionResult Index_Policja_Wyszukaj(string PESEL)
        {
            ListAllClientsVM vm = new ListAllClientsVM()
            {
                Kierowcy = _kierowcaService.Search(PESEL)
            };

            return(View(vm));
        }