コード例 #1
0
 public ProductViewModelService(
     IShopyDriver shopy,
     IMapper mapper,
     ISelectListUtils selectListUtils)
 {
     _shopy           = shopy;
     _mapper          = mapper;
     _selectListUtils = selectListUtils;
 }
コード例 #2
0
ファイル: ProductViewModel.cs プロジェクト: adamm931/Shopy
        public async Task PopulateSizesAndBrands(ISelectListUtils selectListUtils)
        {
            BrandsSelectList = await selectListUtils.GetBrandsSL();

            SelectedSizesML = await selectListUtils.GetSizesMSL();
        }