9 lines
206 B
C#
9 lines
206 B
C#
|
namespace SiteManagementSystem_SoftwareEngineering_.Interface
|
|||
|
{
|
|||
|
public interface IFieldService
|
|||
|
{
|
|||
|
public void AddField(string name, string value);
|
|||
|
public void RentField();
|
|||
|
}
|
|||
|
}
|