22 lines
448 B
C#
22 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestLib
|
|
{
|
|
public class Employer
|
|
{
|
|
string name;
|
|
string proffesion;
|
|
string office;
|
|
public Employer(string name, string proffesion, string office)
|
|
{
|
|
this.name = name;
|
|
this.proffesion = proffesion;
|
|
this.office = office;
|
|
}
|
|
}
|
|
}
|