Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
payments
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Юнусов Ибрагим
payments
Commits
1638ad92
Commit
1638ad92
authored
Jul 06, 2022
by
Юнусов Ибрагим
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Создал миграции и настроил класс Program
parent
50c64b42
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
450 additions
and
9 deletions
+450
-9
20220706141914_Initial.Designer.cs
...ment.WebApi/Migrations/20220706141914_Initial.Designer.cs
+163
-0
20220706141914_Initial.cs
Payments/Payment.WebApi/Migrations/20220706141914_Initial.cs
+108
-0
PaymentDbContextModelSnapshot.cs
...ayment.WebApi/Migrations/PaymentDbContextModelSnapshot.cs
+161
-0
Payment.WebApi.csproj
Payments/Payment.WebApi/Payment.WebApi.csproj
+5
-4
Program.cs
Payments/Payment.WebApi/Program.cs
+9
-4
appsettings.json
Payments/Payment.WebApi/appsettings.json
+4
-1
No files found.
Payments/Payment.WebApi/Migrations/20220706141914_Initial.Designer.cs
0 → 100644
View file @
1638ad92
// <auto-generated />
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore.Infrastructure
;
using
Microsoft.EntityFrameworkCore.Migrations
;
using
Microsoft.EntityFrameworkCore.Storage.ValueConversion
;
using
Npgsql.EntityFrameworkCore.PostgreSQL.Metadata
;
using
Payment.WebApi.Infrastructures.Databases
;
#
nullable
disable
namespace
Payment.WebApi.Migrations
{
[
DbContext
(
typeof
(
PaymentDbContext
))]
[
Migration
(
"20220706141914_Initial"
)]
partial
class
Initial
{
protected
override
void
BuildTargetModel
(
ModelBuilder
modelBuilder
)
{
#pragma warning disable 612, 618
modelBuilder
.
HasAnnotation
(
"ProductVersion"
,
"6.0.6"
)
.
HasAnnotation
(
"Relational:MaxIdentifierLength"
,
63
);
NpgsqlModelBuilderExtensions
.
UseIdentityByDefaultColumns
(
modelBuilder
);
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.Supplier"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
string
>(
"Name"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
HasKey
(
"Id"
);
b
.
ToTable
(
"Suppliers"
);
b
.
HasData
(
new
{
Id
=
1
,
Name
=
"Алсеко"
},
new
{
Id
=
2
,
Name
=
"Казактелеком"
},
new
{
Id
=
3
,
Name
=
"Beeline"
});
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.User"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
int
>(
"Age"
)
.
HasColumnType
(
"integer"
);
b
.
Property
<
string
>(
"FirstName"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
Property
<
string
>(
"LastName"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
Property
<
string
>(
"MiddleName"
)
.
HasColumnType
(
"text"
);
b
.
HasKey
(
"Id"
);
b
.
ToTable
(
"Users"
);
b
.
HasData
(
new
{
Id
=
1
,
Age
=
25
,
FirstName
=
"Jhon"
,
LastName
=
"Doe"
,
MiddleName
=
"Blastovich"
},
new
{
Id
=
2
,
Age
=
27
,
FirstName
=
"Jhoan"
,
LastName
=
"Shepard"
});
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.UserBalance"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
decimal
>(
"Amount"
)
.
HasColumnType
(
"numeric"
);
b
.
Property
<
string
>(
"Currency"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
Property
<
int
>(
"UserId"
)
.
HasColumnType
(
"integer"
);
b
.
HasKey
(
"Id"
);
b
.
HasIndex
(
"UserId"
);
b
.
ToTable
(
"UserBalance"
);
b
.
HasData
(
new
{
Id
=
1
,
Amount
=
100
m
,
Currency
=
"KZT"
,
UserId
=
1
},
new
{
Id
=
2
,
Amount
=
250
m
,
Currency
=
"KZT"
,
UserId
=
2
});
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.UserBalance"
,
b
=>
{
b
.
HasOne
(
"Payment.WebApi.Models.DbModels.User"
,
"User"
)
.
WithMany
(
"Balances"
)
.
HasForeignKey
(
"UserId"
)
.
OnDelete
(
DeleteBehavior
.
Cascade
)
.
IsRequired
();
b
.
Navigation
(
"User"
);
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.User"
,
b
=>
{
b
.
Navigation
(
"Balances"
);
});
#pragma warning restore 612, 618
}
}
}
Payments/Payment.WebApi/Migrations/20220706141914_Initial.cs
0 → 100644
View file @
1638ad92
using
Microsoft.EntityFrameworkCore.Migrations
;
using
Npgsql.EntityFrameworkCore.PostgreSQL.Metadata
;
#
nullable
disable
namespace
Payment.WebApi.Migrations
{
public
partial
class
Initial
:
Migration
{
protected
override
void
Up
(
MigrationBuilder
migrationBuilder
)
{
migrationBuilder
.
CreateTable
(
name
:
"Suppliers"
,
columns
:
table
=>
new
{
Id
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
.
Annotation
(
"Npgsql:ValueGenerationStrategy"
,
NpgsqlValueGenerationStrategy
.
IdentityByDefaultColumn
),
Name
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
)
},
constraints
:
table
=>
{
table
.
PrimaryKey
(
"PK_Suppliers"
,
x
=>
x
.
Id
);
});
migrationBuilder
.
CreateTable
(
name
:
"Users"
,
columns
:
table
=>
new
{
Id
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
.
Annotation
(
"Npgsql:ValueGenerationStrategy"
,
NpgsqlValueGenerationStrategy
.
IdentityByDefaultColumn
),
FirstName
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
),
LastName
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
),
MiddleName
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
true
),
Age
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
},
constraints
:
table
=>
{
table
.
PrimaryKey
(
"PK_Users"
,
x
=>
x
.
Id
);
});
migrationBuilder
.
CreateTable
(
name
:
"UserBalance"
,
columns
:
table
=>
new
{
Id
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
.
Annotation
(
"Npgsql:ValueGenerationStrategy"
,
NpgsqlValueGenerationStrategy
.
IdentityByDefaultColumn
),
Amount
=
table
.
Column
<
decimal
>(
type
:
"numeric"
,
nullable
:
false
),
Currency
=
table
.
Column
<
string
>(
type
:
"text"
,
nullable
:
false
),
UserId
=
table
.
Column
<
int
>(
type
:
"integer"
,
nullable
:
false
)
},
constraints
:
table
=>
{
table
.
PrimaryKey
(
"PK_UserBalance"
,
x
=>
x
.
Id
);
table
.
ForeignKey
(
name
:
"FK_UserBalance_Users_UserId"
,
column
:
x
=>
x
.
UserId
,
principalTable
:
"Users"
,
principalColumn
:
"Id"
,
onDelete
:
ReferentialAction
.
Cascade
);
});
migrationBuilder
.
InsertData
(
table
:
"Suppliers"
,
columns
:
new
[]
{
"Id"
,
"Name"
},
values
:
new
object
[,]
{
{
1
,
"Алсеко"
},
{
2
,
"Казактелеком"
},
{
3
,
"Beeline"
}
});
migrationBuilder
.
InsertData
(
table
:
"Users"
,
columns
:
new
[]
{
"Id"
,
"Age"
,
"FirstName"
,
"LastName"
,
"MiddleName"
},
values
:
new
object
[,]
{
{
1
,
25
,
"Jhon"
,
"Doe"
,
"Blastovich"
},
{
2
,
27
,
"Jhoan"
,
"Shepard"
,
null
}
});
migrationBuilder
.
InsertData
(
table
:
"UserBalance"
,
columns
:
new
[]
{
"Id"
,
"Amount"
,
"Currency"
,
"UserId"
},
values
:
new
object
[,]
{
{
1
,
100
m
,
"KZT"
,
1
},
{
2
,
250
m
,
"KZT"
,
2
}
});
migrationBuilder
.
CreateIndex
(
name
:
"IX_UserBalance_UserId"
,
table
:
"UserBalance"
,
column
:
"UserId"
);
}
protected
override
void
Down
(
MigrationBuilder
migrationBuilder
)
{
migrationBuilder
.
DropTable
(
name
:
"Suppliers"
);
migrationBuilder
.
DropTable
(
name
:
"UserBalance"
);
migrationBuilder
.
DropTable
(
name
:
"Users"
);
}
}
}
Payments/Payment.WebApi/Migrations/PaymentDbContextModelSnapshot.cs
0 → 100644
View file @
1638ad92
// <auto-generated />
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore.Infrastructure
;
using
Microsoft.EntityFrameworkCore.Storage.ValueConversion
;
using
Npgsql.EntityFrameworkCore.PostgreSQL.Metadata
;
using
Payment.WebApi.Infrastructures.Databases
;
#
nullable
disable
namespace
Payment.WebApi.Migrations
{
[
DbContext
(
typeof
(
PaymentDbContext
))]
partial
class
PaymentDbContextModelSnapshot
:
ModelSnapshot
{
protected
override
void
BuildModel
(
ModelBuilder
modelBuilder
)
{
#pragma warning disable 612, 618
modelBuilder
.
HasAnnotation
(
"ProductVersion"
,
"6.0.6"
)
.
HasAnnotation
(
"Relational:MaxIdentifierLength"
,
63
);
NpgsqlModelBuilderExtensions
.
UseIdentityByDefaultColumns
(
modelBuilder
);
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.Supplier"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
string
>(
"Name"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
HasKey
(
"Id"
);
b
.
ToTable
(
"Suppliers"
);
b
.
HasData
(
new
{
Id
=
1
,
Name
=
"Алсеко"
},
new
{
Id
=
2
,
Name
=
"Казактелеком"
},
new
{
Id
=
3
,
Name
=
"Beeline"
});
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.User"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
int
>(
"Age"
)
.
HasColumnType
(
"integer"
);
b
.
Property
<
string
>(
"FirstName"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
Property
<
string
>(
"LastName"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
Property
<
string
>(
"MiddleName"
)
.
HasColumnType
(
"text"
);
b
.
HasKey
(
"Id"
);
b
.
ToTable
(
"Users"
);
b
.
HasData
(
new
{
Id
=
1
,
Age
=
25
,
FirstName
=
"Jhon"
,
LastName
=
"Doe"
,
MiddleName
=
"Blastovich"
},
new
{
Id
=
2
,
Age
=
27
,
FirstName
=
"Jhoan"
,
LastName
=
"Shepard"
});
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.UserBalance"
,
b
=>
{
b
.
Property
<
int
>(
"Id"
)
.
ValueGeneratedOnAdd
()
.
HasColumnType
(
"integer"
);
NpgsqlPropertyBuilderExtensions
.
UseIdentityByDefaultColumn
(
b
.
Property
<
int
>(
"Id"
));
b
.
Property
<
decimal
>(
"Amount"
)
.
HasColumnType
(
"numeric"
);
b
.
Property
<
string
>(
"Currency"
)
.
IsRequired
()
.
HasColumnType
(
"text"
);
b
.
Property
<
int
>(
"UserId"
)
.
HasColumnType
(
"integer"
);
b
.
HasKey
(
"Id"
);
b
.
HasIndex
(
"UserId"
);
b
.
ToTable
(
"UserBalance"
);
b
.
HasData
(
new
{
Id
=
1
,
Amount
=
100
m
,
Currency
=
"KZT"
,
UserId
=
1
},
new
{
Id
=
2
,
Amount
=
250
m
,
Currency
=
"KZT"
,
UserId
=
2
});
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.UserBalance"
,
b
=>
{
b
.
HasOne
(
"Payment.WebApi.Models.DbModels.User"
,
"User"
)
.
WithMany
(
"Balances"
)
.
HasForeignKey
(
"UserId"
)
.
OnDelete
(
DeleteBehavior
.
Cascade
)
.
IsRequired
();
b
.
Navigation
(
"User"
);
});
modelBuilder
.
Entity
(
"Payment.WebApi.Models.DbModels.User"
,
b
=>
{
b
.
Navigation
(
"Balances"
);
});
#pragma warning restore 612, 618
}
}
}
Payments/Payment.WebApi/Payment.WebApi.csproj
View file @
1638ad92
...
...
@@ -7,11 +7,12 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.5" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers" />
</ItemGroup>
</Project>
Payments/Payment.WebApi/Program.cs
View file @
1638ad92
using
Payment.WebApi.Extensions
;
var
builder
=
WebApplication
.
CreateBuilder
(
args
);
// Add services to the container.
builder
.
Services
.
AddControllers
();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder
.
Services
.
AddEndpointsApiExplorer
();
builder
.
Services
.
AddSwaggerGen
();
var
services
=
builder
.
Services
;
services
.
AddControllers
();
services
.
AddEndpointsApiExplorer
();
services
.
AddSwaggerGen
();
services
.
AddAppServices
(
builder
.
Configuration
);
var
app
=
builder
.
Build
();
...
...
Payments/Payment.WebApi/appsettings.json
View file @
1638ad92
...
...
@@ -5,5 +5,8 @@
"Microsoft.AspNetCore"
:
"Warning"
}
},
"AllowedHosts"
:
"*"
"AllowedHosts"
:
"*"
,
"ConnectionStrings"
:
{
"ConnectionString"
:
"Server=localhost;Port=5432;Database=Payments;UserId=postgres"
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment