public TrackingController(ILocationEntityRepository locationRepoz, IShipEntityRepository shipRepoz, IGroupRepository groupRepoz, ISessionEntityRepository sessionRepoz)
 {
     _locationRepoz = locationRepoz;
     _shipRepoz     = shipRepoz;
     _groupRepoz    = groupRepoz;
     _sessionRepoz  = sessionRepoz;
 }
 public ShipController(IShipEntityRepository shipRepoz)
 {
     _shipRepoz = shipRepoz;
 }