TheAirline.Models.General.Holidays.Holiday.Holiday C# (CSharp) Method

Holiday() public method

public Holiday ( string section, string uid, HolidayType type, string name, TravelType travel, Country country ) : System
section string
uid string
type HolidayType
name string
travel TravelType
country TheAirline.Models.General.Countries.Country
return System
        public Holiday(string section, string uid, HolidayType type, string name, TravelType travel, Country country)
        {
            Type = type;
            LongName = name;
            Travel = travel;
            Country = country;
            Uid = uid;
            Section = section;
        }

Same methods

Holiday::Holiday ( SerializationInfo info, StreamingContext ctxt ) : System