using FinXaccesApi.Controllers; using FinXaccesApi.DTOs; namespace FinXaccesApi.Services { public interface IAuthService { Task RegisterAsync(UserDto userDto); Task LoginAsync(UserDto userDto); Task GetUsersCountAsync(); } }