Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Service/Base/Crud/ApplicationService.cs
2023-01-01 23:06:11 +08:00

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; }
}
}