CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IEmployeeModel.cs

15 lines
331 B
C#
Raw Normal View History

2024-05-19 16:01:45 +04:00
using ElectronicsShopDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models {
2024-05-22 23:00:35 +04:00
public interface IEmployeeModel : IID {
string EmployeeFIO { get; }
string Login { get; }
string Password { get; }
2024-05-19 16:01:45 +04:00
}
}