public DiskSpaceController(IRaspberryFiles raspberry)
 {
     _raspberry = raspberry;
 }
Beispiel #2
0
 public FilesController(IFilesRepository repository, IRaspberryFiles raspberry)
 {
     _repository = repository;
     _raspberry  = raspberry;
 }
Beispiel #3
0
 public FilesRepository(CloudContext context, IRaspberryFiles raspberry)
 {
     _context   = context;
     _raspberry = raspberry;
 }