コード例 #1
0
ファイル: Hotel.cs プロジェクト: thomas1996/Accor
 public Hotel(string name, Adres adres, Branch branch, string vatNumber, ContactPerson contactPerson, string hotelId, string email, string telephoneNumber, Owner owner, Status status)
 {
     Name            = name;
     Adres           = adres;
     Branch          = branch;
     VatNumber       = vatNumber;
     ContactPerson   = contactPerson;
     HotelId         = hotelId;
     Email           = email;
     TelephoneNumber = telephoneNumber;
     Owner           = owner;
     Applications    = new List <HotelApplication>();
     Status          = status;
 }
コード例 #2
0
ファイル: Hotel.cs プロジェクト: thomas1996/Accor
        public Hotel(string name, Adres adres, Branch branch, string vatNumber, ContactPerson contactPerson, string hotelId, string email, string telephoneNumber, Owner owner, List <HotelApplication> systems, Status status)
        {
            Name            = name;
            Adres           = adres;
            Branch          = branch;
            VatNumber       = vatNumber;
            ContactPerson   = contactPerson;
            HotelId         = hotelId;
            Email           = email;
            TelephoneNumber = telephoneNumber;
            Owner           = owner;
            Applications    = systems;
            Status          = status;

            //TotalCost = calculateTotalCost();
        }