Example #1
0
 public DBInitialize(FCParkDbContext context)
 {
     _context = context;
 }
Example #2
0
 public VeiculoRepository(FCParkDbContext context)
     : base(context)
 {
 }
Example #3
0
 public RepositoryBaseEF(FCParkDbContext context)
 {
     _context = context;
 }
 public EstabelecimentoRepository(FCParkDbContext context)
     : base(context)
 {
 }
Example #5
0
 public UnitOfWork(FCParkDbContext context)
 {
     this._context = context;
 }