You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuGroupsController.cs 530B

12345678910111213141516171819202122
  1. using Luticate2.Auth.Business;
  2. using Luticate2.Utils.Controllers;
  3. using Microsoft.AspNetCore.Mvc;
  4. namespace Luticate2.Auth.Controllers
  5. {
  6. [Route("luticate/groups")]
  7. public class LuGroupsController : LuController
  8. {
  9. private readonly LuGroupsBusiness _luGroupsBusiness;
  10. public LuGroupsController(LuGroupsBusiness luGroupsBusiness)
  11. {
  12. _luGroupsBusiness = luGroupsBusiness;
  13. }
  14. public string Get()
  15. {
  16. return _luGroupsBusiness.Get();
  17. }
  18. }
  19. }