MemberTypeService
using Umbraco.Cms.Core.Services;@using Umbraco.Cms.Core.ServicesGetting the service
Dependency Injection
public class MyClass
{
private IMemberTypeService _memberTypeService;
public MyClass(IMemberTypeService memberTypeService)
{
_memberTypeService = memberTypeService;
}
}Last updated
Was this helpful?