Guest User

Untitled

a guest
Dec 14th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public class LoggingService
  2. {
  3.  
  4. private readonly IHostingEnvironment env;
  5.  
  6. public LoggingService(IHostingEnvironment env)
  7. {
  8. this.env = env;
  9. }
  10. public void WriteLog(string strLog)
  11. {
  12.  
  13. //Some code is Here
  14. }
  15. }
  16.  
  17. There is no argument given that corresponds to the required formal parameter 'env' of 'LoggingService.LoggingService(IHostingEnvironment)'
Add Comment
Please, Sign In to add comment