Skip to content

Commit 824e592

Browse files
committed
Cleaned solution from sample code.
1 parent 1654591 commit 824e592

28 files changed

+33
-657
lines changed

src/AbpCompanyName.AbpProjectName.Application/Products/Dtos/ProductCreateInput.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/AbpCompanyName.AbpProjectName.Application/Products/Dtos/ProductListDto.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/AbpCompanyName.AbpProjectName.Application/Products/IProductAppService.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/AbpCompanyName.AbpProjectName.Application/Products/ProductAppService.cs

Lines changed: 0 additions & 50 deletions
This file was deleted.

src/AbpCompanyName.AbpProjectName.Core/AbpProjectNameCoreModule.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public class AbpProjectNameCoreModule : AbpModule
99
public override void PreInitialize()
1010
{
1111
Configuration.Auditing.IsEnabledForAnonymousUsers = true;
12+
1213
AbpProjectNameLocalizationConfigurer.Configure(Configuration.Localization);
1314
}
1415

src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-tr.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"texts": {
44
"HelloWorld": "Merhaba Dünya!",
55
"ChangeLanguage": "Dil değiştir",
6-
"GetProducts": "Ürünleri getir",
7-
86
"HomePage": "Ana sayfa",
9-
"About": "Hakkında"
7+
"About": "Hakkında",
8+
"Home_Description": "AbpProjectName projesine hoşgeldiniz...",
9+
"About_Description": "Bu proje, ASP.NET Core ile ABP framework kullanmak için basit bir başlangıç şablonudur."
1010
}
1111
}

src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"texts": {
44
"HelloWorld": "Hello World!",
55
"ChangeLanguage": "Change language",
6-
"GetProducts": "Get products",
7-
86
"HomePage": "HomePage",
9-
"About": "About"
7+
"About": "About",
8+
"Home_Description": "Welcome to AbpProjectName...",
9+
"About_Description": "This is a simple startup template to use ASP.NET Core with ABP framework."
1010
}
1111
}

src/AbpCompanyName.AbpProjectName.Core/Products/Category.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/AbpCompanyName.AbpProjectName.Core/Products/Product.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/AbpCompanyName.AbpProjectName.EntityFrameworkCore/EntityFrameworkCore/AbpProjectNameDbContext.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
using Abp.EntityFrameworkCore;
2-
using AbpCompanyName.AbpProjectName.Products;
32
using Microsoft.EntityFrameworkCore;
43

54
namespace AbpCompanyName.AbpProjectName.EntityFrameworkCore
65
{
76
public class AbpProjectNameDbContext : AbpDbContext
87
{
9-
public DbSet<Category> Categories { get; set; }
10-
11-
public DbSet<Product> Products { get; set; }
12-
138
public AbpProjectNameDbContext(DbContextOptions<AbpProjectNameDbContext> options)
149
: base(options)
1510
{

0 commit comments

Comments
 (0)