Beispiel #1
0
 public AppIngredientsService(IUnitOfWork unitOfWork,
                              IOptions <PaginationOptions> options,
                              IMapper mapper,
                              IAppUnitsService appUnitsService,
                              IMtrTipoMonedaService mtrTipoMonedaService,
                              IAppRecipesServices appRecipesServices)
 {
     _unitOfWork           = unitOfWork;
     _paginationOptions    = options.Value;
     _mapper               = mapper;
     _appUnitsService      = appUnitsService;
     _mtrTipoMonedaService = mtrTipoMonedaService;
     _appRecipesServices   = appRecipesServices;
 }
 public AppRecipesController(IAppRecipesServices appRecipesServices)
 {
     _appRecipesServices = appRecipesServices;
 }