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

13 lines
567 B
C#

using library_spo_utils.Enums;
using Microsoft.SharePoint.Client;
namespace library_spo_utils.Interfaces.Services;
internal interface IOneNoteService
{
public bool CreateFolderInsideProject(string projName, ClientContext ctx);
public bool CreateFolderInsideQuotation(string quotationName, ClientContext ctx);
public bool CreateFolderInsideNonCompliance(string quotationName, ClientContext ctx);
public bool CreateFolderInsidePurchasing(string purchasingName, ClientContext ctx, PurchType type);
public void EnableFeature(ClientContext ctx);
}