Ejemplo n.º 1
0
 public AdminReportService(
     IRepository <DailyReport> reportRepository,
     IUserRepository userRepository,
     IRepository <ConsumedDish> consumedDishRepository,
     IParametersCalculationService calculationService,
     IDietService dietService,
     IMapper mapper)
     : base(reportRepository, userRepository, consumedDishRepository, calculationService, dietService, mapper)
 {
 }
Ejemplo n.º 2
0
 public ReportService(
     IRepository <DailyReport> reportRepository,
     IUserRepository userRepository,
     IRepository <ConsumedDish> consumedDishRepository,
     IParametersCalculationService calculationService,
     IDietService dietService,
     IMapper mapper)
 {
     _reportRepository       = reportRepository;
     _userRepository         = userRepository;
     _consumedDishRepository = consumedDishRepository;
     _calculationService     = calculationService;
     _dietService            = dietService;
     _mapper = mapper;
 }