21 lines
377 B
C#
21 lines
377 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WinFormsTestApp
|
|||
|
{
|
|||
|
public class Department
|
|||
|
{
|
|||
|
public string name;
|
|||
|
public int sells;
|
|||
|
|
|||
|
public Department(string name, int sells)
|
|||
|
{
|
|||
|
this.name = name;
|
|||
|
this.sells = sells;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|