Exemple #1
0
 public PostPathRepository(
     IPostConfiguration postConfiguration,
     IFileProviderConfiguration fileProviderConfiguration)
 {
     _fileProviderConfiguration = fileProviderConfiguration;
     _postConfiguration         = postConfiguration;
 }
 public PostProcessor(
     RequestDelegate next,
     IPostConfiguration postConfiguration)
 {
     _next = next;
     _postConfiguration = postConfiguration;
 }