DataTypeService
using Umbraco.Cms.Core.Services;@using Umbraco.Cms.Core.ServicesGetting the service
Dependency Injection
public class MyClass
{
private IDataTypeService _dataTypeService;
public MyClass(IDataTypeService dataTypeService)
{
_dataTypeService = dataTypeService;
}
}Last updated
Was this helpful?