Exemple #1
0
        public async Task <List <Sabor> > GetById(int id)
        {
            Expression <Func <Sabor, bool> > where;

            where = o => o.Id == id;
            List <Sabor> p = await _repositorySabor.Get(where, true, 1);

            return(p);
        }