ExampleService.cs 369 B

1234567891011121314
  1. using VCommon.Ioc;
  2. using VCommon.VAspNetCoreExample.VApp.Example.Dto;
  3. using VCommon.VAutoMapper;
  4. namespace VCommon.VAspNetCoreExample.VApp.Example
  5. {
  6. public class ExampleService : IExampleService, ITransientIocClass
  7. {
  8. public ExampleOutput ExampleMethod(ExampleInput input)
  9. {
  10. return input.MapTo<ExampleOutput>();
  11. }
  12. }
  13. }