Coursach/Course/DataModels/Models/IWorkerModel.cs

17 lines
338 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface IWorkerModel : IId
{
string Name { get; }
DateTime Birthday { get; }
string Specialization { get; }
double Salary { get; }
}
}