using StandManager.Service.Interfaces; namespace StandManager.Service; public class ManagerService : IManagerService { public ManagerService(IUtenteService utenteService) { UtenteService = utenteService; } public IUtenteService UtenteService { get; set; } }