-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from Encamina/@rliberoff/update_semantic_kernel
New version `6.0.4` which updates Semantic Kernel to `1.0.0-beta8`
- Loading branch information
Showing
79 changed files
with
471 additions
and
408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
samples/Data/Sample_Data_CosmosDB/Bill.cs → ...na.Enmarcha.Samples.Data.CosmosDB/Bill.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
samples/Data/Sample_Data_CosmosDB/Bills.cs → ...a.Enmarcha.Samples.Data.CosmosDB/Bills.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
samples/Data/Sample_Data_CosmosDB/README.md → ....Enmarcha.Samples.Data.CosmosDB/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
samples/Data/Encamina.Enmarcha.Samples.Data.CosmosDB/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"CosmosOptions": { | ||
"AuthKey": "", // Authentication key required to connect with Azure Cosmos DB. | ||
"Database": "", // Database name to connect with Azure Cosmos DB. | ||
"Endpoint": "" // Azure Cosmos DB service endpoint to use. | ||
}, | ||
"CosmosDBContainerName": "BILLS" | ||
} |
12 changes: 12 additions & 0 deletions
12
samples/Data/Encamina.Enmarcha.Samples.Data.EntityFramework/Bill.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace Encamina.Enmarcha.Samples.Data.EntityFramework; | ||
|
||
internal class Bill : IEntity | ||
{ | ||
public string Id { get; set; } | ||
|
||
public string Concept { get; set; } | ||
|
||
public double Amount { get; set; } | ||
|
||
public string EmployeeId { get; set; } | ||
} |
8 changes: 8 additions & 0 deletions
8
samples/Data/Encamina.Enmarcha.Samples.Data.EntityFramework/Employee.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Encamina.Enmarcha.Samples.Data.EntityFramework; | ||
|
||
internal class Employee : IEntity | ||
{ | ||
public string Id { get; set; } | ||
|
||
public string FullName { get; set; } | ||
} |
File renamed without changes.
10 changes: 10 additions & 0 deletions
10
samples/Data/Encamina.Enmarcha.Samples.Data.EntityFramework/FinantialDBContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace Encamina.Enmarcha.Samples.Data.EntityFramework; | ||
|
||
internal class FinantialDBContext : DbContext | ||
{ | ||
public DbSet<Bill> Bills { get; set; } | ||
|
||
public DbSet<Employee> Employees { get; set; } | ||
} |
16 changes: 8 additions & 8 deletions
16
...ta_EntityFramework/FinantialOperations.cs → ...ta.EntityFramework/FinantialOperations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
samples/Data/Encamina.Enmarcha.Samples.Data.EntityFramework/FinantialUnitOfWork.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Encamina.Enmarcha.Data.EntityFramework; | ||
|
||
namespace Encamina.Enmarcha.Samples.Data.EntityFramework; | ||
|
||
internal class FinantialUnitOfWork : FullUnitOfWork | ||
{ | ||
internal FinantialUnitOfWork(FinantialDBContext dBContext) : base(dBContext) | ||
{ | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
samples/Data/Encamina.Enmarcha.Samples.Data.EntityFramework/IEntity.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace Encamina.Enmarcha.Samples.Data.EntityFramework; | ||
|
||
internal interface IEntity | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.