Esempio n. 1
0
        //Get information from the persistence layer and sends it to the presentation layer
        public List <DTO.Customer> GetCustomers()
        {
            var customers = pizzaRepository.GetCustomers();

            return(customers);
        }