using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestApp { public class Department { public string name; public List sells; public Department(string name, List sells) { this.name = name; this.sells = sells; } } }