當前位置: 首頁>>代碼示例>>C#>>正文


C# Airline.getCodesharingAirlines方法代碼示例

本文整理匯總了C#中TheAirline.Model.AirlineModel.Airline.getCodesharingAirlines方法的典型用法代碼示例。如果您正苦於以下問題:C# Airline.getCodesharingAirlines方法的具體用法?C# Airline.getCodesharingAirlines怎麽用?C# Airline.getCodesharingAirlines使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TheAirline.Model.AirlineModel.Airline的用法示例。


在下文中一共展示了Airline.getCodesharingAirlines方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AcceptCodesharing

        //returns if an airline wants to have code sharing with another airline
        public static Boolean AcceptCodesharing(Airline airline, Airline asker, CodeshareAgreement.CodeshareType type)
        {

            double coeff = type == CodeshareAgreement.CodeshareType.One_Way ? 0.25 : 0.40;

            IEnumerable<Country> sameCountries = asker.Airports.Select(a => a.Profile.Country).Distinct().Intersect(airline.Airports.Select(a => a.Profile.Country).Distinct());
            IEnumerable<Airport> sameDestinations = asker.Airports.Distinct().Intersect(airline.Airports);
            IEnumerable<Country> sameCodesharingCountries = airline.getCodesharingAirlines().SelectMany(a => a.Airports).Select(a => a.Profile.Country).Distinct().Intersect(airline.Airports.Select(a => a.Profile.Country).Distinct());

            double airlineDestinations = airline.Airports.Count;
            double airlineRoutes = airline.Routes.Count;
            double airlineCountries = airline.Airports.Select(a => a.Profile.Country).Distinct().Count();
            double airlineCodesharings = airline.Codeshares.Count;
            double airlineAlliances = airline.Alliances.Count;

            //declines if asker is much smaller than the invited airline
            if (airlineRoutes > 3 * asker.Routes.Count)
                return false;

            //declines if there is a match for x% of the airlines
            if (sameDestinations.Count() >= airlineDestinations * coeff)
                return false;

            //declines if there is a match for 75% of the airlines
            if (sameCountries.Count() >= airlineCountries * 0.75)
                return false;

            //declines if the airline already has a code sharing or alliance in that area
            if (sameCodesharingCountries.Count() >= airlineCountries * coeff)
                return false;

            return true;
        }
開發者ID:tehknox,項目名稱:tap-desktop,代碼行數:34,代碼來源:AirlineHelpers.cs


注:本文中的TheAirline.Model.AirlineModel.Airline.getCodesharingAirlines方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。