예제 #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);
 }