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