MemberGroupService
using Umbraco.Cms.Core.Services;@using Umbraco.Cms.Core.ServicesGetting the service
Dependency Injection
public class MyClass
{
private IMemberGroupService _memberGroupService;
public MyClass(IMemberGroupService memberGroupService)
{
_memberGroupService = memberGroupService;
}
}Last updated
Was this helpful?