This file contains hidden or 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
using Microsoft.Extensions.DependencyInjection; | |
namespace DependencyInjectionTest | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello, World!"); |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Naylah | |
{ | |
public class ConfigurationStore : Dictionary<string, object> | |
{ | |
public ConfigurationStore(IEnumerable<IConfigurationSource> configurationSources) |
This file contains hidden or 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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace MarQ.Results | |
{ | |
public class AggregateProcessResult : ProcessResult, IDictionary<string, ProcessResult> | |
{ |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Microsoft.EntityFrameworkCore; | |
using Microsoft.EntityFrameworkCore.Metadata; | |
namespace BiFrost.Web.DataManagement | |
{ | |
public class EFDBMLService<TDbContext> |
This file contains hidden or 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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "v1", | |
"title": "HBLOG Kernel API" | |
}, | |
"paths": { | |
"/api/ElevationOrder/GetByLineUpId": { | |
"get": { | |
"tags": [ |
This file contains hidden or 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
public class CosmosContainerRepository<TEntity> : IRepository<TEntity> where TEntity : IEntity<string>, IModifiable, new() | |
{ | |
private readonly Container container; | |
public CosmosContainerRepository(Container container, Func<TEntity, PartitionKey> partitionKeyResolver) | |
{ | |
this.container = container; | |
PartitionKeyResolver = partitionKeyResolver; | |
} |
This file contains hidden or 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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "v1", | |
"title": "HBLOG Kernel API" | |
}, | |
"paths": { | |
"/api/EventRealized/AttachProductEletronicInvoice": { | |
"get": { | |
"tags": [ |
This file contains hidden or 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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "v1", | |
"title": "HBLOG WorkSchedule API" | |
}, | |
"paths":{ | |
"/api/WorkSchedule/getall": { | |
"get": { | |
"tags": [ |
This file contains hidden or 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
{ | |
"documento": "0000150267", | |
"form": "NFCT", | |
"status_documento": "2", | |
"status_comunica": "0", | |
"ano_nf": "20", | |
"mês_nf": "07", | |
"modelo_nf": "57", | |
"num_nf": "330000026", | |
"empresa": "BR10", |
This file contains hidden or 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
public interface IDataProcedureService | |
{ | |
Procedure LoadProcedure(string procedure); | |
IEnumerable<T> Execute<T>(Procedure procedure); | |
} | |
public class Procedure | |
{ | |
public Procedure(IDataProcedureService dataProcedureService) |
NewerOlder