Demka_kur/Hardik/Date/Dostup.cs

21 lines
354 B
C#
Raw Permalink Normal View History

2025-02-05 09:03:32 +00:00
namespace Demka_Snova_1.Hardik.Date;
public interface ISeller
{
void CreateOrder();
}
public interface IStarshiy
{
void CreateOrder();
void AcceptGoods();
}
public interface IAdmin
{
void GenerateReports();
void MonitorLoginHistory();
void ManageMaterials();
}