public AutoBodyTypeService(IAutoBodyTypeRepository autoBodyTypeRepository, IMapper autoMapper, AutoBodyType autoBodyType)
 {
     this.autoBodyTypeRepository = autoBodyTypeRepository;
     this.autoMapper             = autoMapper;
     this.autoBodyType           = autoBodyType;
 }
Ejemplo n.º 2
0
 public AutoBodyTypeService(IAutoBodyTypeRepository autoBodyTypeRepository, IUnitOfWork unitOfWork)
     : base(autoBodyTypeRepository, unitOfWork)
 {
 }