Files
console_spo_utils/library_spo_utils/Interfaces/Services/ITenantService.cs
T
2023-06-21 10:38:57 +02:00

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();
}