16 lines
476 B
C#
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;
|
|
}
|
|
} |