예제 #1
0
 public AdminController()
 {
     this.db   = new QUONOWEntities();
     this.unit = new UnitOfWork(this.db);
 }
예제 #2
0
        public EmailProcess()
        {
            QUONOWEntities db = new QUONOWEntities();

            this.unit = new UnitOfWork(db);
        }
예제 #3
0
 public MallController()
 {
     this.db  = new QUONOWEntities();
     this.uow = new UnitOfWork(this.db);
 }
예제 #4
0
 LoginController()
 {
     this.db  = new QUONOWEntities();
     this.uoW = new UnitOfWork(db);
 }
예제 #5
0
 public Utility()
 {
     this.db   = new QUONOWEntities();
     this.unit = new UnitOfWork(db);
 }
예제 #6
0
 public ProductController()
 {
     this.db   = new QUONOWEntities();
     this.unit = new UnitOfWork(db);
 }
예제 #7
0
 public Repository(QUONOWEntities contex)
 {
     this.db = contex;
 }
예제 #8
0
        public TicketController()
        {
            QUONOWEntities db = new QUONOWEntities();

            this.unit = new UnitOfWork(db);
        }
예제 #9
0
 public UnitOfWork(QUONOWEntities db)
 {
     this.context = db;
 }