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
using ProductManager.Shared; | |
services.AddTransient<IGetProductsQuery, GetProductsQuery>(); |
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
{"Name":"$Name$","Nr#":"$Nr#$","Name2":"$Name2$","Name3":"$Name3$","NaAb":"$NaAb$","Form":"$Form$","CatchDate":"$CatchDate$","Species%":"$Species%$","maxCP":"$maxCP$","evoCP":"$evoCP$","Type":"$Type$","Lvl":"$Lvl$","Lucky":"$Lucky$","Egg":"$Egg$","Appraised":"$Appraised$","ATT":"$ATT$","DEF":"$DEF$","CP":"$CP$","HP":"$HP$","Tank":"$Tank$","Gender":"$Gender$","IV/Cmb":"$IV/Cmb$","IVR/Cmb":"$IVR/Cmb$","IV%Avg":"$IV%Avg$","Trade":"$Trade$","CP%":"$CP%$","Perf/IV%":"$Perf/IV%$","IV%Range":"$IV%Range$","IVPerfect":"$IVPerfect$","IV%Min":"$IV%Min$","IV%Max":"$IV%Max$","Combs":"$Combs$","AttIV":"$AttIV$","DefIV":"$DefIV$","HpIV":"$HpIV$","FaMove":"$FaMove$","SpMove":"$SpMove$","Sp2Move":"$Sp2Move$","SmMoves":"$SmMoves$","Att%":"$Att%$","AttDPS":"$AttDPS$","AttR":"$AttR$","DefR":"$DefR$","MoveTypes":"$MoveTypes$","FastType":"$FastType$","SpecialType":"$SpecialType$","Special2Type":"$Special2Type$","NrBars":"$NrBars$","NrBars2":"$NrBars2$","DuelRate":"$DuelRate$","A-FastDPS":"$A-FastDPS$","A-SpecDPS":"$A-SpecDPS$","A- |
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
using Microsoft.Extensions.Configuration; | |
public static IWebHostBuilder CreateWebHostBuilder(string[] args) => | |
WebHost.CreateDefaultBuilder(args) | |
.ConfigureAppConfiguration((context, config) => | |
{ | |
var builtConfig = config.Build(); | |
var keyVaultConfigBuilder = new ConfigurationBuilder(); |
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
using System; | |
using System.IO; | |
using System.ServiceModel.Syndication; | |
using System.Xml; | |
namespace SyndicationFeedTest | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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
using CsvHelper; | |
using Microsoft.Analytics.Interfaces; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text; | |
namespace SomeNamespace | |
{ | |
public class CustomExtractor : CsvExtractor |
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
using MyApplication.Data; | |
using MyApplication.Services.Models; | |
using Swashbuckle.Swagger.Annotations; | |
using System.Data.Entity; | |
using System.Net; | |
using System.Threading.Tasks; | |
using System.Web.Http; | |
using System.Web.Http.Description; | |
namespace MyApplication.Web.Controllers.api |
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
require_relative '../base' | |
module Examples | |
module Checkout | |
class Walkthrough | |
def self.run(client) | |
# Create the order step by step: | |
# You may also choose to start it off with some line items | |
# See checkout/creating_with_line_items.rb |
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
# Source control | |
cinst -y ` | |
git ` | |
tortoisegit ` | |
poshgit | |
# Main developement tools | |
cinst -y visualstudio2013professional -InstallArguments "/Features:'WebTools SQL'" | |
cinst -y mssqlserver2014express | |
cinst -y mssqlservermanagementstudio2014express |
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
require_relative '../base' | |
module Examples | |
module Checkout | |
class Walkthrough | |
def self.run(client) | |
# Create the order step by step: | |
# You may also choose to start it off with some line items | |
# See checkout/creating_with_line_items.rb |
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
require_relative '../base' | |
module Examples | |
module Orders | |
class Importing | |
def self.run(client) | |
# Add address information the order | |
address = { | |
firstname: 'Test', |
NewerOlder