AbstractedSheep.ShuttleTrackerService.EtaCalculator.Eta.Eta C# (CSharp) Méthode

Eta() public méthode

public Eta ( int shuttleId, int routeId, string stopId, int eta ) : System
shuttleId int
routeId int
stopId string
eta int
Résultat System
            public Eta(int shuttleId, int routeId, string stopId, int eta)
            {
                ShuttleId = shuttleId;
                StopId = stopId;
                Time = eta;
                RouteId = routeId;
            }
EtaCalculator.Eta