Esempio n. 1
0
 public IdentityRepository(ProsumerInfoContext context) : base(context)
 {
 }
Esempio n. 2
0
 public Repository(ProsumerInfoContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public ProsumerConsumptionsController(ProsumerInfoContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public UnitOfWork(ProsumerInfoContext context)
 {
     Context            = context;
     ProsumerRepository = new ProsumerRepository(context);
     IdentityRepository = new IdentityRepository(context);
 }
 public ProsumerRepository(ProsumerInfoContext context) : base(context)
 {
 }