I don't really understand the difference between a Use Case Interactor and a Service in Clean Architecture. Is a domain service just a collection of "Use Case Interactor methods"?
I want to implement the clean architecture in my ASP.net Core Application, but i am not sure if I should implement it in the "Use Case Interactor" way (https://fullstackmark.com/post/18/building-aspnet-core-web-apis-with-clean-architecture), the "Service" way (https://github.com/ardalis/CleanArchitecture) or if I should combine them (if possible at all).