Exemplo n.º 1
0
        public IActionResult Index()
        {
            CustomerListModel customerModel = new CustomerListModel
            {
                CustomerList = ICustomerService.CustomerList().ToList()
            };

            return(View(customerModel));  //GELEN LİSTEYİ MODELE ATIP VİEW'A YOLLA
        }