using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AbazovAppView { public class OfficeWorker { public OfficeWorker(int id, string lastName, string firstName, int age, string department, string position, int boxNumber, string phoneNumber, bool isInVacation = false) { this.id = id; this.lastName = lastName; this.firstName = firstName; this.age = age; this.department = department; this.position = position; this.boxNumber = boxNumber; this.phoneNumber = phoneNumber; this.isInVacation = isInVacation; } public int id; public string lastName; public string firstName; public int age; public string department; public string position; public int boxNumber; public string phoneNumber; public bool isInVacation; } }