public RecurringJobsService(IMacrosRepository macrosRepository, IMapper mapper)
 {
     _macrosRepository = macrosRepository ?? throw new ArgumentNullException(nameof(macrosRepository));
     _mapper           = mapper;
 }
示例#2
0
 public SavedMealMacrosController(IMacrosRepository macrosRepository, IMapper mapper)
 {
     _macrosRepository = macrosRepository ?? throw new ArgumentNullException(nameof(macrosRepository));
     _mapper           = mapper;
 }