public EntryController(IEntryRepo entryRepo, IDriverRepo driverRepo,
                        IConsigneeRepo consigneeRepo, ICustomerRepo customerRepo, IShipperRepo shipperRepo)
 {
     _entryRepo     = entryRepo;
     _driverRepo    = driverRepo;
     _consigneeRepo = consigneeRepo;
     _customerRepo  = customerRepo;
     _shipperRepo   = shipperRepo;
 }
 public ShipperController(IShipperRepo shipperRepo)
 {
     _shipperRepo = shipperRepo;
 }