Example #1
0
        protected RepositorioBase(VendasContext contexto)
        {
            if (contexto == null)
            {
                throw new ArgumentNullException("contexto");
            }

            Contexto = contexto;
        }
Example #2
0
 protected RepositorioCrudBase(VendasContext contexto)
     : base(contexto)
 {
 }