示例#1
0
文件: UnitOfWork.cs 项目: gvhung/CMS
 public UnitOfWork(string constr)
 {
     _context = new CRMContext(constr);
 }
示例#2
0
文件: UserStore.cs 项目: gvhung/CMS
 public UserStore(string constr)
 {
     _context = new CRMContext(constr);
 }
示例#3
0
 public TicketStore(CRMContext context)
 {
     _context = context;
 }
示例#4
0
文件: UnitOfWork.cs 项目: gvhung/CMS
 public UnitOfWork()
 {
     _context = new CRMContext("CRMContext");
 }
示例#5
0
 public TicketStore(string constr)
 {
     _context = new CRMContext(constr);
 }
示例#6
0
 public CompanyStore(string constr)
 {
     _context = new CRMContext(constr);
 }
示例#7
0
 public BranchStore(CRMContext context)
 {
     _context = context;
 }
示例#8
0
 public BranchStore(string constr)
 {
     _context = new CRMContext(constr);
 }
示例#9
0
 public ProductStore(string constr)
 {
     _context = new CRMContext(constr);
 }