public IActionResult Index_policja() { ListAllClientsVM vm = new ListAllClientsVM() { Kierowcy = _kierowcaService.Get() }; return(View(vm)); }
public IActionResult Index_Policja_Wyszukaj(string PESEL) { ListAllClientsVM vm = new ListAllClientsVM() { Kierowcy = _kierowcaService.Search(PESEL) }; return(View(vm)); }