Initial
This commit is contained in:
13
StandManager.Service/ManagerService.cs
Normal file
13
StandManager.Service/ManagerService.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using StandManager.Service.Interfaces;
|
||||
|
||||
namespace StandManager.Service;
|
||||
|
||||
public class ManagerService : IManagerService
|
||||
{
|
||||
public ManagerService(IUtenteService utenteService)
|
||||
{
|
||||
UtenteService = utenteService;
|
||||
}
|
||||
|
||||
public IUtenteService UtenteService { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user