using BusinessERP.Models; using BusinessERP.Pages; using System.Threading.Tasks; namespace BusinessERP.Services { public interface IRoles { Task GenerateRolesFromPagesAsync(); Task AddToRoles(ApplicationUser _ApplicationUser); Task RolebaseMenuLoad(ApplicationUser _ApplicationUser); } }