Exemplo n.º 1
0
 public UnitOfWork(string constr)
 {
     _context = new CRMContext(constr);
 }
Exemplo n.º 2
0
 public UserStore(string constr)
 {
     _context = new CRMContext(constr);
 }
Exemplo n.º 3
0
 public TicketStore(CRMContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public UnitOfWork()
 {
     _context = new CRMContext("CRMContext");
 }
Exemplo n.º 5
0
 public TicketStore(string constr)
 {
     _context = new CRMContext(constr);
 }
Exemplo n.º 6
0
 public CompanyStore(string constr)
 {
     _context = new CRMContext(constr);
 }
Exemplo n.º 7
0
 public BranchStore(CRMContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public BranchStore(string constr)
 {
     _context = new CRMContext(constr);
 }
Exemplo n.º 9
0
 public ProductStore(string constr)
 {
     _context = new CRMContext(constr);
 }