public int ActorId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public ActorBiographies Biography { get; set; }
public class ActorBiographies
public int ActorBiographyId { get; set; }
public string Biography { get; set; }
public DateTime DOB { get; set; }
public string POB { get; set; }
public string Nationality { get; set; }
public int ActorID { get; set; }
public Actors Actor { get; set; }