Ejemplo n.º 1
0
 public OrthodoxTheory()
 {
     Father = new PersonOfGodhead();
     Son    = new Jesus {
         IsHuman = true, Divinity = DivinityStatus.Full
     };
     Spirit = new PersonOfGodhead();
 }
Ejemplo n.º 2
0
 public Docetism()
 {
     Father = new PersonOfGodhead();
     Son    = new Jesus {
         IsHuman = false, Divinity = DivinityStatus.Full
     };
     Spirit = new PersonOfGodhead();
 }
Ejemplo n.º 3
0
        public Macedonianism()
        {
            Father = new PersonOfGodhead();
            Son    = new Jesus {
                IsHuman = true, Divinity = DivinityStatus.Full
            };
            Spirit = null;

            Task.Run(() =>
            {
                Thread.Sleep(SomePeriodOfTime);
                Spirit = new Entity();
            });
        }