laatzen/LaaProductionWeb/LaaProductionWeb.API/Areas/Account/Controllers/AccountBaseController.cs
2023-05-31 14:41:46 +02:00

16 lines
476 B
C#

namespace LaaProductionWeb.API.Areas.Account.Controllers
{
using LaaProductionWeb.Standart.Interfaces;
using Microsoft.AspNetCore.Mvc;
[ApiController]
[Area("Account")]
[Route("[area]/[controller]")]
public class AccountBaseController : ControllerBase
{
protected readonly IAccountService accountService;
public AccountBaseController(IAccountService accountService)
=> this.accountService = accountService;
}
}