public Internship(Double trimester_salary, EnumContractType temp_position, int contract_months) : base(temp_position, contract_months) { this.trimester_salary = trimester_salary; }
public Internship(String fname, String lname, String social_security, EnumDepartment department, EnumCategory category, Date hire_date, Date birthday, Address address, Phone home_ph, Phone cel_ph, String email, EnumContractType temp_position, int contract_months, Double trimester_salary) : base(fname, lname, social_security, department, category, hire_date, birthday, address, home_ph, cel_ph, email, temp_position, contract_months) { this.trimester_salary = trimester_salary; }
// This constructor is made for FileHandler purposes public PartTime(String id, String fname, String lname, String social_security, String department, String category, Date hire_date, Date birthday, Address address, Phone home_ph, Phone cel_ph, String email, String contract, String temp_position, String contract_months) : base(id, fname, lname, social_security, department, category, hire_date, birthday, address, home_ph, cel_ph, email, contract) { this.temp_position = (EnumContractType)Enum.Parse(typeof(EnumContractType), temp_position); this.contract_months = Convert.ToInt16(contract_months); }
public PartTime(String fname, String lname, String social_security, EnumDepartment department, EnumCategory category, Date hire_date, Date birthday, Address address, Phone home_ph, Phone cel_ph, String email, EnumContractType temp_position, int contract_months) : base(fname, lname, social_security, department, category, hire_date, birthday, address, home_ph, cel_ph, email) { this.temp_position = temp_position; this.contract_months = contract_months; }
public ConsultantTrainer(String fname, String lname, String social_security, EnumDepartment department, EnumCategory category, Date hire_date, Date birthday, Address address, Phone home_ph, Phone cel_ph, String email, EnumContractType temp_position, int contract_months, double hourly_salary, double week_hours) : base(fname, lname, social_security, department, category, hire_date, birthday, address, home_ph, cel_ph, email, temp_position, contract_months) { this.hourly_salary = hourly_salary; this.week_hours = week_hours; }
public ConsultantTrainer(EnumContractType temp_position, int contract_months, double hourly_salary, double week_hours) : base(temp_position, contract_months) { this.hourly_salary = hourly_salary; this.week_hours = week_hours; }
public PartTime(EnumContractType temp_position, int contract_months) { this.temp_position = temp_position; this.contract_months = contract_months; }
public void setTemp_position(EnumContractType temp_position) { this.temp_position = temp_position; }