예제 #1
0
 public ItemCompraRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #2
0
 public EstoqueRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #3
0
 public CarrinhoRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #4
0
 public ClienteRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #5
0
 public ValuesController(HawkContext context)
 {
     this.context = context;
 }
예제 #6
0
 public EnderecoClienteRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #7
0
 public ProdutoRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #8
0
 public EmpresaRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #9
0
 public ContactsController(HawkContext db)
 {
     mContactService = new ContactsService(db);
 }
예제 #10
0
 public CategoriaRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #11
0
 public UsuarioRepository(HawkContext context)
 {
     this.context = context;
 }
예제 #12
0
 public ContactsService(HawkContext db)
 {
     mDb = db;
 }