This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ApiController] | |
[Route("api/logic")] | |
public class Logic | |
{ | |
private readonly GolestanContext _context; | |
private readonly ILogger<Logic> _logger; | |
private readonly RoleManager<IdentityRole> _roleManager; | |
public Logic(GolestanContext golestanContext, ILogger<Logic> logger, RoleManager<IdentityRole> roleManager) | |
{ |