13 lines
567 B
C#
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);
|
|
} |