2025-02-11 10:23:14 +00:00
|
|
|
namespace Demka_Snova_1.Hardik.Date;
|
|
|
|
|
|
|
|
public interface ISeller
|
2025-03-05 09:12:58 +00:00
|
|
|
{
|
|
|
|
void FormatZakaz();
|
|
|
|
}
|
2025-02-11 10:23:14 +00:00
|
|
|
|
2025-03-05 09:12:58 +00:00
|
|
|
public interface IStarshiy
|
|
|
|
{
|
|
|
|
void FormatZakaz();
|
|
|
|
void AcceptZakaz();
|
2025-02-11 10:23:14 +00:00
|
|
|
|
2025-03-05 09:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public interface IAdmin
|
|
|
|
{
|
|
|
|
void FormatOtchots();
|
|
|
|
void KontrolUsero();
|
|
|
|
void KontrolMateriala();
|
|
|
|
}
|