8 lines
221 B
C#
8 lines
221 B
C#
namespace library_spo_utils.Interfaces.Services;
|
|
|
|
internal interface ITenantService
|
|
{
|
|
public void CreateForProject(string projName);
|
|
public void CreateForQuotation();
|
|
public void CreateForNonCompliance();
|
|
} |