예제 #1
0
 public ProdutoAppServices(IProdutoServices domainService, IProdutoFotoServices fotoServices, IMarcaServices marcaServices, IMaterialServices materialServices, IAviseMeServices aviseMeServices, IUnitOfWork unitOfWork)
 {
     _domainService    = domainService;
     _fotoServices     = fotoServices;
     _marcaServices    = marcaServices;
     _materialServices = materialServices;
     _aviseMeServices  = aviseMeServices;
     _unitOfWork       = unitOfWork;
     _mapper           = AutoMapperConfig.Mapper;
 }
예제 #2
0
 public MarcaAppServices(IMarcaServices marcaServices, IUnitOfWork unitOfWork)
 {
     _marcaServices = marcaServices;
     _unitOfWork    = unitOfWork;
     _mapper        = AutoMapperConfig.Mapper;
 }
예제 #3
0
 public MarcaController(IMarcaServices marcaServices, IMapper mapper)
 {
     _marcaServices = marcaServices;
     _mapper        = mapper;
 }