16 lines
417 B
C#
16 lines
417 B
C#
using AutoMapper;
|
|
using AutoMapper.Internal.Mappers;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
namespace Yi.Framework.Service.Base.Crud
|
|
{
|
|
public class ApplicationService : IApplicationService
|
|
{
|
|
public ApplicationService(IMapper mapper)
|
|
{
|
|
ObjectMapper = mapper;
|
|
}
|
|
protected IMapper ObjectMapper { get; set; }
|
|
}
|
|
} |