Exemplo n.º 1
0
 public JugadoresController(RepositoryJugadores repo, PathProvider provider, ServiceEquipos service, ServiceStorageFile storageFile)
 {
     this.service     = service;
     this.storageFile = storageFile;
     this.repo        = repo;
     this.provider    = provider;
 }
Exemplo n.º 2
0
 public UsuarioController(RepositoryJugadores repo, FileUploader uploader, ServiceEquipos service, ServiceStorageFile storageFile)
 {
     this.repo        = repo;
     this.uploader    = uploader;
     this.service     = service;
     this.storageFile = storageFile;
 }
        public EquipoController(RepositoryJugadores repo, ServiceStorageFile storageFile, ServiceEquipos service)
        {
            this.repo = repo;

            this.service     = service;
            this.storageFile = storageFile;
        }
Exemplo n.º 4
0
 public AzureFilesController(ServiceStorageFile servicefiles)
 {
     this.servicefiles = servicefiles;
 }