16 lines
456 B
C#
16 lines
456 B
C#
using AutoMapper;
|
|
using DigitalData.Core.Contracts.Application;
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
namespace DigitalData.Core.Application
|
|
{
|
|
/// <summary>
|
|
/// Provides a base implementation of <see cref="IServiceBase"/>.
|
|
/// </summary>
|
|
public class ServiceBase : ResponseService, IServiceBase, IResponseService
|
|
{
|
|
public ServiceBase(IStringLocalizer defaultLocalizer) : base(defaultLocalizer)
|
|
{
|
|
}
|
|
}
|
|
} |