Changeset 9a57e89 for iknow-api/Data


Ignore:
Timestamp:
10/21/25 17:21:47 (11 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
d025ba3
Parents:
2859225
Message:

Refactor user management: update models, repositories, and services; remove obsolete files

Location:
iknow-api/Data
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Data/AppDbContext.cs

    r2859225 r9a57e89  
    11using Microsoft.EntityFrameworkCore;
    2 using iknow_api.Models;
     2using iknow_api.Core.Models;
    33
    4 public class AppDbContext : DbContext
     4namespace iknow_api.Core.Data
    55{
    6     public AppDbContext(DbContextOptions<AppDbContext> options)
    7         : base(options) { }
     6    public class AppDbContext : DbContext
     7    {
     8        public AppDbContext(DbContextOptions<AppDbContext> options)
     9            : base(options) { }
    810
    9     public DbSet<Users> Users { get; set; }
     11        public DbSet<User> User { get; set; }
     12    }
    1013}
Note: See TracChangeset for help on using the changeset viewer.