Dojo4.Gerente.Gerente C# (CSharp) Method

Gerente() public method

public Gerente ( string nome, double horas, double bonus ) : System
nome string
horas double
bonus double
return System
        public Gerente(string nome, double horas, double bonus)
            : base(nome, horas, 100)
        {
            this.bonus = bonus;
        }