21 lines
281 B
C#
21 lines
281 B
C#
namespace Demka_Snova_1.Hardik.Date;
|
|
|
|
public interface ISeller
|
|
{
|
|
void FormatZakaz();
|
|
}
|
|
|
|
public interface IStarshiy
|
|
{
|
|
void FormatZakaz();
|
|
void AcceptZakaz();
|
|
|
|
}
|
|
|
|
public interface IAdmin
|
|
{
|
|
void FormatOtchots();
|
|
void KontrolUsero();
|
|
void KontrolMateriala();
|
|
}
|