Example #1
0
 public VeiculoRepository(IAdicionalRepository adicionalRepository,
                          IItemRepository itemRepository,
                          UbusContext db) : base(db)
 {
     _adicionalRepository = adicionalRepository;
     _itemRepository      = itemRepository;
 }
Example #2
0
 public ViagemRepository(UbusContext db) : base(db)
 {
 }
Example #3
0
 public MotoristaViagemRepository(UbusContext db) : base(db)
 {
 }
Example #4
0
 public ItemRepository(UbusContext db) : base(db)
 {
 }
Example #5
0
 public RotaRepository(UbusContext db) : base(db)
 {
 }
 public AdicionalRepository(UbusContext db) : base(db)
 {
 }
Example #7
0
 public BaseRepository(UbusContext db)
 {
     Db    = db;
     DbSet = db.Set <TEntity>();
 }