Exemplo n.º 1
0
        public ProjectManager(Assignee assignee)
        {
            this.AssigneeName = assignee.AssigneeName;

            Department = new Department(WorkScheduler.Constants.ProjectManagementDepartmentID)
            {
                DepartmentName = Enums.Enumerations.Department.ProjectManagement.ToString()
            };

            this.Capacity = assignee.Capacity;
            this.Id       = assignee.Id;
        }
Exemplo n.º 2
0
        public Transporter(Assignee assignee)
        {
            this.AssigneeName = assignee.AssigneeName;

            Department = new Department(WorkScheduler.Constants.TransportationDepartmentID)
            {
                DepartmentName = Enums.Enumerations.Department.Transportation.ToString()
            };

            this.Capacity = assignee.Capacity;
            this.Id       = assignee.Id;
        }