13 lines
356 B
C#
13 lines
356 B
C#
using AutoMapper;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace zero.Backoffice.Controllers;
|
|
|
|
[ApiController]
|
|
//[ServiceFilter(typeof(ModelStateValidationFilterAttribute))]
|
|
//[ServiceFilter(typeof(BackofficeFilterAttribute))]
|
|
public abstract class ZeroBackofficeApiController : ZeroBackofficeController
|
|
{
|
|
protected IMapper Mapper { get; private set; }
|
|
}
|