13 lines
287 B
C#
13 lines
287 B
C#
using StandManager.Service.Interfaces;
|
|
|
|
namespace StandManager.Service;
|
|
|
|
public class ManagerService : IManagerService
|
|
{
|
|
public ManagerService(IUtenteService utenteService)
|
|
{
|
|
UtenteService = utenteService;
|
|
}
|
|
|
|
public IUtenteService UtenteService { get; set; }
|
|
} |