本文整理匯總了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;
}