Jonny Sparks

Head of Customer Support at Fatsoma

Jonny Sparks began their career in 2013 as an Animation Technician at Cubic Motion. In 2014, they moved to Fatsoma, where they held the roles of Head of Customer Support and Technical Account Manager.

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace _03.Animals

{

public class Frog : Animal

{

public Frog(string name, int age, Gender gender)

: base(name, age, gender)

{

}

public override void MakeSound()

{

Console.WriteLine("Kwak!");

}

}

}

Links


Org chart