1234567891011121314 |
- using VCommon.Ioc;
- using VCommon.VAspNetCoreExample.VApp.Example.Dto;
- using VCommon.VAutoMapper;
- namespace VCommon.VAspNetCoreExample.VApp.Example
- {
- public class ExampleService : IExampleService, ITransientIocClass
- {
- public ExampleOutput ExampleMethod(ExampleInput input)
- {
- return input.MapTo<ExampleOutput>();
- }
- }
- }
|