public ProdutoRepository(ProjetoDataContext db = null) : base(db)
 {
 }
 public TipoAcessoRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 3
0
 public FuncaoRepository(ProjetoDataContext db = null) : base(db)
 {
 }
 public UsuarioRepository(ProjetoDataContext db = null) : base(db)
 {
 }
 public TipoCancelamentoRepository(ProjetoDataContext db = null) : base(db)
 {
 }
 public ItemPedidoRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 7
0
 public ClienteRepository(ProjetoDataContext db = null) : base(db)
 {
 }
 public ComissaoRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 9
0
 public VendedorRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 10
0
 public TipoDespesaRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 11
0
 public RecuperarSenhaRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 12
0
 public RepositoryBase(ProjetoDataContext db = null)
 {
     Db = db ?? new ProjetoDataContext();
 }
Exemplo n.º 13
0
 public FormaPgRepository(ProjetoDataContext db = null) : base(db)
 {
 }
Exemplo n.º 14
0
 public HistoricoVendaRepository(ProjetoDataContext db = null)
 {
     Db = new ProjetoDataContext();
 }