Add auth service

This commit is contained in:
Aaron Po
2026-01-25 21:58:26 -05:00
parent 14cb05e992
commit a56ea77861
8 changed files with 183 additions and 1 deletions

View File

@@ -15,5 +15,15 @@ namespace BusinessLayer.Services
{
return await repository.GetByIdAsync(id);
}
public async Task AddAsync(UserAccount userAccount)
{
await repository.AddAsync(userAccount);
}
public async Task UpdateAsync(UserAccount userAccount)
{
await repository.UpdateAsync(userAccount);
}
}
}