2023-03-26 14:36:35 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConstructionCompanyDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IPositionModel : IId
|
|
|
|
|
{
|
2023-03-26 19:14:28 +04:00
|
|
|
|
string PositionName { get; }
|
2023-03-26 14:36:35 +04:00
|
|
|
|
double Salary { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|