public UnitOfWork(string constr) { _context = new CRMContext(constr); }
public UserStore(string constr) { _context = new CRMContext(constr); }
public TicketStore(CRMContext context) { _context = context; }
public UnitOfWork() { _context = new CRMContext("CRMContext"); }
public TicketStore(string constr) { _context = new CRMContext(constr); }
public CompanyStore(string constr) { _context = new CRMContext(constr); }
public BranchStore(CRMContext context) { _context = context; }
public BranchStore(string constr) { _context = new CRMContext(constr); }
public ProductStore(string constr) { _context = new CRMContext(constr); }