summaryrefslogtreecommitdiff
path: root/Services/IUserAccountService.cs
blob: 900e5624b21c2b002b9dfff9d5dc462fa06ca6e1 (plain)
1
2
3
4
5
6
7
8
using Microsoft.AspNetCore.Identity;
using BackendPIA.Models;

namespace BackendPIA.Services {
    public interface IUserAccountService {
        public Task<IdentityResult> CreateUserAccount(UserAccount user, string password, string role);
    }
}