I have app service ExperienceAppService that implements interface IExperienceAppService.
I try to use Scrutoк for auto registering
I have this code in Startup file
services.Scan(scan =>
scan.FromCallingAssembly()
.AddClasses()
.AsMatchingInterface());
It supposed to register interface . But I got this error
Unable to resolve service for type 'TooSeeWeb.Core.Interfaces.Experiences.IExperienceAppService' while attempting to activate 'TooSeeWeb.Controllers.ExperienceController'.
Where is my trouble?