SenseNet / sn-client-dotnet

A .Net client for sensenet that makes it easy to use the REST API of the Content Repository.
https://www.sensenet.com/
GNU General Public License v2.0
7 stars 16 forks source link

[Client in a web API] Port middleware services to the client library #115

Closed tusmester closed 7 months ago

tusmester commented 1 year ago

Port the generalized services, extensions, and helper methods from TFS to the client package.

For example:

public interface IRepositoryService
{
    public Task<IRepository> GetUserRepositoryAsync(CancellationToken cancel);
    public Task<IRepository> GetVisitorRepositoryAsync(CancellationToken cancel);
    public Task<IRepository> GetAdminRepositoryAsync(CancellationToken cancel);
}