From 7a4190ca13cd6a088002806949243f11616a7179 Mon Sep 17 00:00:00 2001 From: alireza Date: Tue, 9 Jun 2026 01:58:05 +0330 Subject: [PATCH] feat: add Province and City DbSets to ComplexDBContext --- Complex.Infrastructure/ComplexDBContext.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Complex.Infrastructure/ComplexDBContext.cs b/Complex.Infrastructure/ComplexDBContext.cs index f81fe59..549d969 100644 --- a/Complex.Infrastructure/ComplexDBContext.cs +++ b/Complex.Infrastructure/ComplexDBContext.cs @@ -155,6 +155,8 @@ namespace Complex.Infrastructure public virtual DbSet UnitCosts { get; set; } public virtual DbSet UserTokens { get; set; } public virtual DbSet SmsCodes { get; set; } + public virtual DbSet Provinces { get; set; } + public virtual DbSet Cities { get; set; } protected override void ConfigureConventions(ModelConfigurationBuilder builder) {