public Lanche Get(int?id)
        {
            if (id == null)
            {
                return(null);
            }

            return(_repoLanche.Get(id));
        }
Esempio n. 2
0
        public Domain.Models.Lanche Get(int?id)
        {
            if (id == null)
            {
                return(null);
            }

            return(_repoLanche.Get(id));
        }