Skip to content

Instantly share code, notes, and snippets.

@Mirch
Created April 12, 2020 10:51
Show Gist options
  • Save Mirch/52ba2f4d254ea01989ab56803f5c7403 to your computer and use it in GitHub Desktop.
Save Mirch/52ba2f4d254ea01989ab56803f5c7403 to your computer and use it in GitHub Desktop.
public class FileHandler : IFileHandler
{
private readonly TransferzorDbContext _context;
private readonly IAwsS3FileManager _s3FileManager;
public FileHandler(
TransferzorDbContext context,
IAwsS3FileManager s3FileManager)
{
_context = context;
_s3FileManager = s3FileManager;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment