Exemplo n.º 1
0
 public ProductController(IProductRepository productRepository, IPrixRepository prixRepository,
                          IFileApplication fileApplication, IRelationPrixRepository relationPrixRepository, IUtils utils)
 {
     this.productRepository      = productRepository;
     this.prixRepository         = prixRepository;
     this.fileApplication        = fileApplication;
     this.relationPrixRepository = relationPrixRepository;
     this.utils = utils;
 }
 public FilesController(IHostingEnvironment environment, IFileApplication fileApplication)
 {
     Environment     = environment;
     FileApplication = fileApplication;
     Directory       = Path.Combine(Environment.ContentRootPath, "Files");
 }
Exemplo n.º 3
0
 public FileViewComponent(IFileApplication ifileapplication)
 {
     _ifileapplication = ifileapplication;
 }
 public AudioFileController(IFactory factory)
 {
     _factory = factory;
     _fileApp = factory.GetFileApplication;
 }