Example #1
0
 public FileMover(IOptions<DRSConfig> config, ApplicationDbContext db, IFileEncryptor encryptor)
 {
     _config = config.Value;
     _encryptor = encryptor;
     _db = db;
 }
Example #2
0
File: Pdf.cs Project: lruckman/DRS
 public Pdf(byte[] buffer, DRSConfig config)
     : base(buffer, config)
 {
 }
Example #3
0
File: Text.cs Project: lruckman/DRS
 public Text(byte[] buffer, DRSConfig config)
     : base(buffer, config)
 {
 }
Example #4
0
 public Default(byte[] buffer, DRSConfig config)
     : base(buffer, config)
 {
 }
Example #5
0
File: File.cs Project: lruckman/DRS
 protected File(byte[] buffer, DRSConfig config)
 {
     Buffer = buffer;
     Config = config;
 }
Example #6
0
 public Image(byte[] buffer, DRSConfig config)
     : base(buffer, config)
 {
 }
Example #7
0
 public FileDecoder(IOptions<DRSConfig> config)
 {
     _config = config.Value;
 }