Project_Marmelade.Employee.Employee C# (CSharp) Метод

Employee() публичный Метод

public Employee ( string name, string address, string email, string type, string title, int workhours, string dateOfEmployment ) : System
name string
address string
email string
type string
title string
workhours int
dateOfEmployment string
Результат System
        public Employee (string name, string address, string email, string type, string title, int workhours, string dateOfEmployment)
        {
            Name = name;
            Address = address;
            Email = email;
            Type = type;
            Title = title;
            WorkHours = workhours;
            DateOfEmployment = dateOfEmployment;
        }
        public Employee(string name, string address, string email, string type, string title, int workhours, string dateOfEmployment, string status)

Same methods

Employee::Employee ( string name, string address, string email, string type, string title, int workhours, string dateOfEmployment, string status ) : System
Employee