PIbd-23_Bogdanov_D.S._Compu.../AbstractComputerDataModel/Models/IImplementerModel.cs
2023-04-19 15:46:04 +04:00

17 lines
364 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
public interface IImplementerModel : IId
{
string ImplementerFIO { get; }
string Password { get; }
int WorkExperience { get; }
int Qualification { get; }
}
}