PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDataModels/IImplementerModel.cs
2024-04-22 20:09:58 +04:00

17 lines
329 B
C#

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