Esempio n. 1
0
 public PizzaBAL()
 {
     pizzaDAL = new PizzaDAL();
     mapper   = new PizzaMapper();
 }
Esempio n. 2
0
        public List <PizzaListViewModel> GetAllPizza()
        {
            List <Pizza> dbPizzas = _pizzaRepository.GetAll();

            return(dbPizzas.Select(x => PizzaMapper.PizzaToPizzaListViewModel(x)).ToList());
        }