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