Dynamic user profile per tenant
This commit is contained in:
21
Oqtane.Client/Services/Interfaces/IProfileService.cs
Normal file
21
Oqtane.Client/Services/Interfaces/IProfileService.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Oqtane.Services
|
||||
{
|
||||
public interface IProfileService
|
||||
{
|
||||
Task<List<Profile>> GetProfilesAsync();
|
||||
|
||||
Task<List<Profile>> GetProfilesAsync(int SiteId);
|
||||
|
||||
Task<Profile> GetProfileAsync(int ProfileId);
|
||||
|
||||
Task<Profile> AddProfileAsync(Profile Profile);
|
||||
|
||||
Task<Profile> UpdateProfileAsync(Profile Profile);
|
||||
|
||||
Task DeleteProfileAsync(int ProfileId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user