예제 #1
0
 public IEnumerable <Lanche> GetAll()
 {
     return(_lancheRepository.GetAll());
 }
 public IEnumerable <Lanche> GetAll()
 {
     return(_repoLanche.GetAll());
 }
예제 #3
0
        public IDtoResult GetAll()
        {
            var Lanches = _repository.GetAll();

            return(Lanches.ToDto());
        }
예제 #4
0
 public IEnumerable <Domain.Models.Lanche> GetAll()
 {
     return(_repoLanche.GetAll());
 }