I have the following database table :
BookingReferenceNumber
TotalNights
BillingAddress
FinalAmount
CellPhone
State
Country
ZipCode
CheckInDate,
CheckOutDate
NumberOfGuests
[ForeignKey("Camp")] CampId { get; set; }
[ForeignKey("Account")] UserId
where UserId and campId are foreign key in this table. Is this table in 3NF or not?