public BinhLuanController(IBinhLuanRepository binhLuanRepository)
 {
     _binhLuanRepository = binhLuanRepository;
 }
Exemple #2
0
 public BinhLuanService(IBinhLuanRepository binhLuanRepository, IUnitOfWork unitOfWork)
 {
     _binhLuanRepository = binhLuanRepository;
     _unitOfWork         = unitOfWork;
 }
Exemple #3
0
 public BinhLuanService(IBinhLuanRepository binhLuanRepository, IMapper mapper)
 {
     _binhLuanRepository = binhLuanRepository;
     _mapper             = mapper;
 }