21 lines
354 B
C#
21 lines
354 B
C#
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();
|
|
}
|