示例#1
0
 public Arianism()
 {
     Father = new FatherAloneAsGod();
     Son    = new Jesus {
         IsHuman = true, Divinity = DivinityStatus.Partial
     };
     Spirit = (Father as FatherAloneAsGod).Power;
 }
示例#2
0
 public Ebionitism()
 {
     Father = new FatherAloneAsGod();
     Son    = new Jesus {
         IsHuman = true, Divinity = DivinityStatus.None
     };
     Spirit = (Father as FatherAloneAsGod).Power;
 }
        public Adoptionism()
        {
            Father = new FatherAloneAsGod();
            Son    = new Jesus {
                IsHuman = true, Divinity = DivinityStatus.None
            };
            Spirit = (Father as FatherAloneAsGod).Power;

            Task.Run(() =>
            {
                Thread.Sleep(SomePeriodOfTime);
                (Son as Jesus).Divinity = DivinityStatus.Full;
            });
        }