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