RefactoringGolf.Store.Employee.Employee C# (CSharp) Méthode

Employee() protected méthode

protected Employee ( string firstName, string lastName, decimal fixedSalary )
firstName string
lastName string
fixedSalary decimal
        protected Employee(string firstName, string lastName, decimal fixedSalary)
        {
            this.FirstName = firstName;
            this.LastName = lastName;
            this.FixedSalary = fixedSalary;
        }

Same methods

Employee::Employee ( string firstName, string lastName, decimal fixedSalary ) : System.Collections.Generic