public TrackingController(ILocationEntityRepository locationRepoz, IShipEntityRepository shipRepoz, IGroupRepository groupRepoz, ISessionEntityRepository sessionRepoz)
 {
     _locationRepoz = locationRepoz;
     _shipRepoz     = shipRepoz;
     _groupRepoz    = groupRepoz;
     _sessionRepoz  = sessionRepoz;
 }
Beispiel #2
0
 public LocationController(ILocationEntityRepository locationRepoz)
 {
     _locationRepoz = locationRepoz;
 }