예제 #1
0
 public ImageModel(IJuicerRepository repository, ImageStore imageStore, IMapper mapper)
 {
     this.repository = repository;
     this.imageStore = imageStore;
     this.mapper     = mapper;
 }
예제 #2
0
 public DetailsModel(IMapper mapper, IJuicerRepository repository)
 {
     this.mapper     = mapper;
     this.repository = repository;
 }
예제 #3
0
 public RecipesController(IJuicerRepository repository, IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }
예제 #4
0
 public EditModel(IHtmlHelper htmlHelper, IMapper mapper, IJuicerRepository repository)
 {
     this.htmlHelper = htmlHelper;
     this.mapper     = mapper;
     this.repository = repository;
 }
예제 #5
0
 public ProductsController(IJuicerRepository repository, IMapper mapper)
 {
     this.mapper     = mapper;
     this.repository = repository;
 }
예제 #6
0
 public ListModel(IJuicerRepository repository)
 {
     this.repository = repository;
 }
예제 #7
0
 public DeleteModel(IJuicerRepository repository)
 {
     this.repository = repository;
 }
예제 #8
0
 public DetailsModel(IJuicerRepository repository, IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }