IDisposable Constructor Injection
If I new up a class to inject via constructor injection which has an IDisposable object, does the class receiving the IDisposable parameter need to implement IDisposable?
eg:
Does player need to be
eg:
Does player need to be
using var player?