public IActionResult GetAllOsoba()
        {
            var osobe = _osobaService.GetAll();
            var model = new OsobeGetAllModel(osobe);

            return(View(model));
        }
Пример #2
0
 public DropdownOsobaDto(IOsobaAppService services)
 {
     Osobe = services.GetAll();
 }