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; } }