Migrate from User to Account domain concept

Renames core domain entities and services from "User" to "Account"

Refactors project-wide namespaces, classes, and database tables to use "Account" terminology
Updates related components, services, and database schema to reflect new domain naming
Standardizes naming conventions across authentication and organization setup features
This commit is contained in:
Janus C. H. Knudsen 2026-01-09 22:14:46 +01:00
parent e5e7c1c19f
commit 88812177a9
29 changed files with 288 additions and 298 deletions

View file

@ -1,12 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlanTempus.Core.Entities.Users
namespace PlanTempus.Core.Entities.Accounts
{
public class User
public class Account
{
public int Id { get; set; }
public string Email { get; set; }
@ -26,9 +20,9 @@ namespace PlanTempus.Core.Entities.Users
public bool IsActive { get; set; }
}
public class UserOrganization
public class AccountOrganization
{
public int UserId { get; set; }
public int AccountId { get; set; }
public int OrganizationId { get; set; }
public DateTime CreatedDate { get; set; }
}