Coursach/Course/DataModels/Models/IWorkerModel.cs

17 lines
338 B
C#
Raw Normal View History

2024-04-03 13:30:29 +04:00
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; }
}
}