13 lines
312 B
C#
13 lines
312 B
C#
|
|
using UmbracoExamine.DataServices;
|
||
|
|
|
||
|
|
namespace UmbracoExamine.Azure
|
||
|
|
{
|
||
|
|
public class UmbracoAzureDataService : UmbracoDataService
|
||
|
|
{
|
||
|
|
public UmbracoAzureDataService()
|
||
|
|
{
|
||
|
|
//overwrite the log service
|
||
|
|
LogService = new UmbracoAzureLogService();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|