Files
Yi.Admin/src/Yi.Framework/Yi.Framework.Ddd.Application/Services/ApplicationService.cs

15 lines
281 B
C#
Raw Normal View History

2023-01-15 14:32:43 +08:00
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Ddd.Services
{
public abstract class ApplicationService
2023-01-15 14:32:43 +08:00
{
public IMapper _mapper { get; set; }
}
}