Esempio n. 1
0
 public UserGadgetRepository(Entities context)
     : base(context)
 {
     UserGadgets = Context.UserGadgets;
 }
Esempio n. 2
0
 public UserRepository(Entities context)
     : base(context)
 {
     Users = Context.Users;
 }
Esempio n. 3
0
 internal BaseRepository(Entities context)
 {
     Context = context;
 }
Esempio n. 4
0
 public GadgetRepository(Entities context)
     : base(context)
 {
     Gadgets = Context.Gadgets;
 }
Esempio n. 5
0
 public UnitOfWork(string connectionString)
 {
     _context = new Entities(connectionString);
 }