content
stringlengths
23
1.05M
using System.Threading.Tasks; using Microsoft.Bot.Builder.Dialogs; using Microsoft.Bot.Builder.Luis.Models; using Microsoft.Bot.Connector; namespace QnaLuisBot.Handlers { public interface IIntentHandler { Task Respond(IAwaitable<IMessageActivity> activity, LuisResult result); } }
#tool "nuget:?package=xunit.runners&version=1.9.2" var target = Argument("target", "Default"); var configuration = Argument("configuration", "Release"); var artifactsDir = Directory("./artifacts"); var solution = "./Atlas.sln"; Task("Clean") .Does(() => { CleanDirectory(artifactsDir); }); Task("...
namespace GalleryServer.Features.Profile { using GalleryServer.Controllers; using GalleryServer.Features.Profile.Models; using GalleryServer.Infrastructure.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; public class Profile...
namespace RingCentral { public partial class MessageAttachmentInfo { // Internal identifier of a message attachment public string @id { get; set; } // Canonical URI of a message attachment public string @uri { get; set; } // Type of message attachment public strin...
using System.Threading.Tasks; namespace CrossNews.Core.Services { public interface IShareService { Task<bool> ShareLinkAsync(string title, string url, object opaqueSource); } }
using Microsoft.EntityFrameworkCore.Metadata.Internal; using SapphireDb.Attributes; using System; using System.ComponentModel.DataAnnotations; using System.Linq.Expressions; namespace WebUI.Data.DemoDb { //[QueryFunction("GetQuery")] public class Pixel { [Key] public Guid Id { get; set; } ...
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238 using Windows.UI.Xaml; using Windows.UI.Xaml.Navigation; using UwpDeepDive.MainApp.Helpers; using UwpDeepDive.MainApp.ViewModels; namespace UwpDeepDive.MainApp.Views { /// <summary> /// An empty page that can be us...
using System; using GeometricAlgebraStructuresLib.Frames; using TextComposerLib.Text.Linear; using TextComposerLib.Text.Parametric; using TextComposerLib.Text.Structured; namespace GMac.CodeComposers.GradedMultivectorsLibraryComposer.Composers.CSharp.KVectorClass { /// <summary> /// This class generates a sta...
namespace Domain.Entitties.Schedule.ViewModels.TeacherScheduleViewModel { public class TeacherSchedule { public TeacherDay[] Days { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Data; using System.Reflection; namespace presentacion.Clases { public class General { public void llenarComboBox(DataTable Datos,ComboBox combo,s...
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #pragma warning disable 1591 // Missing XML comment for publicly visible type or member 'member' using System; namespace Microsoft.Azure.Functions.PowerShellWor...
using System.ComponentModel.DataAnnotations; using NHSD.GPIT.BuyingCatalogue.EntityFramework.Catalogue.Models; using NHSD.GPIT.BuyingCatalogue.EntityFramework.Ordering.Models; using NHSD.GPIT.BuyingCatalogue.WebApp.Models; namespace NHSD.GPIT.BuyingCatalogue.WebApp.Areas.Admin.Models.HostingTypeModels { public ab...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShiftOS.Engine { /// <summary> /// Interface for creating a Shiftnet website. /// </summary> public interface IShiftnetSite { /// <summary> /// Called when ...
namespace Idoit.API.Client { public interface IPurgeable { void Purge(); } }
using Newbe.Mahua.Messages.CancelMessage; namespace Newbe.Mahua.MPQ.Messages.CancelMessage { public class MpqCancelMessageToken : IMessageCancelToken { protected MpqCancelMessageToken() { } public static IMessageCancelToken EmptyActionToken = new MpqCancelMessageToken(); ...
namespace ClangNet.Samples { /// <summary> /// Class Behavior Info /// </summary> public abstract class ClassBehaviorInfo : BehaviorInfo { /// <summary> /// Class Name /// </summary> public string ClassName { get; } /// <summary> /// Constructor ...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; public class LevelLoader : MonoBehaviour { public Slider slider; public Text teks; public float delay = 3; public float ActiveTime = 0f; void Awake() { ...
using Mirror; namespace WeaverSyncSetTests.SyncSetStruct { class SyncSetStruct : NetworkBehaviour { MyStructSet Foo; struct MyStruct { int potato; float floatingpotato; double givemetwopotatoes; } class MyStructSet : SyncHashSet<MyStr...
using JetBrains.Annotations; namespace LetsEncryptAcmeReg { public class AcmeTextAssets { public string KeyPem { get; set; } public string CsrPem { get; set; } public string CrtPem { get; set; } public string CrtDer { get; set; } public string IssuerPem { get; set; } ...
using Newtonsoft.Json; using Refit; namespace OpenGazettes.Models { public class QueryRequest { [JsonProperty("facet")] [AliasAs("facet")] public string Facet { get; set; } [JsonProperty("limit")] public int Limit { get; set; } [JsonProperty("off...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace Wumpus.WinFormsApp { class Score : IComparable { public string Name; public string CavePlayed; public int HighScore; ...
using System; using System.Collections; using System.Text; using System.IO; namespace midiManager { class CGuru { //erstes MidiDatenByte - MidiChannel + Befehl NN private int port; private MIDIOXLib.MoxScriptClass mox; public int browserMode = 0; public CGuru(MID...
@model StudentApplicationSystem.Models.User @{ /**/ ViewBag.Title = "Delete"; } @if (Session["userName"] != null && (int)Session["userId"] == Model.userId) { <h1>You can not delete yourself !</h1> <div> <button class="btn btn-link" onclick="location.href='@Url.Action("Index", "User")';retur...
using kafka_dotNet_extensions_core.Configuration; using System; namespace kafka_dotNet_extensions_core { /// <summary> /// /// </summary> public interface IBuilder { /// <summary> /// /// </summary> /// <param name="cliendId"></param> /// <returns></return...
using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace PrometheusEnumetric { public struct EnuMetricContainerScope<T> : IDisposable where T:class { private readonly AsyncLocal<T> _scope; private readonly T _parent; internal EnuMetr...
using System.Linq; using Microsoft.AspNetCore.Mvc; using ElectronNET.API; using ElectronNET.API.Entities; namespace ElectronNET.WebApp.Controllers { public class AppSysInformationController : Controller { public IActionResult Index() { if(HybridSupport.IsElectronActive) ...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; namespace Aptacode.StateNet.PatternMatching { public class Pattern : IEquatable<Pattern> { public static readonly Pattern Empty = new(); public Pattern(params string[] elements) { ...
using DesignPatternsInCSharp.Creational.AbstractFactory.RealWord.Interfaces; namespace DesignPatternsInCSharp.Creational.AbstractFactory.RealWord.Models; public class VictorianSofa : ISofa { public string Name => throw new NotImplementedException(); public string Manufacturer => throw new NotImplementedExcep...
/* Ben Scott * bescott@andrew.cmu.edu * 2015-07-07 * Hand */ using UnityEngine; using System.Collections; using System.Collections.Generic; using inv=PathwaysEngine.Inventory; using util=PathwaysEngine.Utilities; namespace PathwaysEngine.Movement { public class Hand : MonoBehaviour { public bool ikActi...
using System; namespace ComparingStringOne { class ComparingStringOne { static void Main() { Console.WriteLine("12" == "12"); Console.WriteLine("17" == "9"); Console.WriteLine("aa" == "ab"); } } }
using System.Data.SqlTypes; using GeoJSON.Net.Geometry; using Microsoft.SqlServer.Types; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace GeoJSON.Net.Contrib.MsSqlSpatial.Test { [TestClass] public class ToGeoJSONGeographyTests { [TestMethod] [TestCategory("ToGeoJSONGeography")...
using System; using System.Linq; using System.Text; using SqlSugar; namespace NQI_LIMS.Model.Models { ///<summary> /// ///</summary> [SugarTable( "PREORDTASK", "LIMSORACLE")] public class PREORDTASK { public PREORDTASK() { } public decimal ORIGREC { ...
using System; using System.Collections.Generic; using System.Reflection; using System.Text; using System.Threading; using System.Threading.Tasks; using Confluent.Kafka; using Confluent.SchemaRegistry; using Confluent.SchemaRegistry.Serdes; using PMDEvers.Servicebus; namespace Servicebus.Kafka { public class EventP...
namespace FileSend { public class Response { public int status { get; set; } public string description { get; set; } } }
using System.Net; using System.Threading.Tasks; using System.Web; using Microsoft.AspNetCore.Mvc.Testing; using Newtonsoft.Json; using Xunit; namespace Readify.KnockKnock.IntegrationTests { public class ReverseWordsTests : IClassFixture<WebApplicationFactory<Startup>> { private readonly WebApplicationF...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace ZookeeperViewer { public static class MessageBoxUtility { public static void ShowError(string text) { MessageBox.Show(text, "Error", M...
using MediatR; namespace ELearning.Application.Sections.Queries.GetSectionEvaluationsListById { public class GetSectionEvaluationsListByIdQuery : IRequest<SectionEvaluationsListViewModel> { public int Id { get; set; } } }
using curso.api.Models.Cursos; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Swashbuckle.AspNetCore.Annotations; using System; using System.Collections.Generic; using System.Linq; using System.Security.Claims; using System.Threading.Tasks; namespace curso.api.Controllers{ [Route...
namespace DTO.o.Interfaces { public interface IDTOo { } }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Player : MonoBehaviour { public float jumpSpeed; public AudioClip scoreClip; public AudioClip gameOverClip; public AudioClip flapClip; private Rigidbody2D body; private Animator animationManager; private UIMana...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Actividad_5 { class Arreglo { int[] edades; public void recibe() { edades = new int[10]; for (int i = 0; i < edades.Length; i++) { ...
namespace Divstack.Company.Estimation.Tool.Valuations.Domain.Valuations; public record EmployeeId(Guid Value) { public static EmployeeId Of(Guid guid) { return new EmployeeId(guid); } }
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using BDSA2017.Lecture11.Entities; using Microsoft.EntityFrameworkCore; using BDSA2017.Lecture11.Web.Models; using Microsoft.AspNetCore.Mvc; using Microsoft....
using System.ComponentModel; using Nexus.Interfaces; namespace Nexus.ModManager.Configs.Nexus { public class MapConfiguration : IConfig { } }
using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; namespace UGUIFrame { public class UIButton : Button,IGrayMember { /** 按钮点击音效 */ public static Action<string> OnSoundPlay; /** 是否Disable所有按钮 */ public static bool IsDisableAllBtn = false; ...
using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.ModelConfiguration; namespace DurandalAuth.Domain.Models.Mapping { public class AspNetUserMap : EntityTypeConfiguration<AspNetUser> { public AspNetUserMap() { // Primary Key this.HasKey(t => t.I...
namespace Ninject.Extensions.Logging.Classes { using System.Runtime.CompilerServices; #if !SILVERLIGHT public class ObjectGetsItsOwnLoggerUsingCurrentClassMethod { private readonly ILogger _logger; // ReSharper disable SuggestBaseTypeForParameter [MethodImpl(MethodImplOptions.NoInlining)] ...
using System; namespace PackageVerification.SqlScanner.Models { [Serializable] public class Azure { public string FileName { get; set; } public MessageTypes MessageType { get; set; } public string Message { get; set; } public Azure() { FileName = ""; ...
using System; using System.Collections.Generic; using System.Reflection; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.ChangeTracking; using Ding.Datas.Ef.Core; using Ding.Datas.Ef.Internal; namespace Ding.Datas.Ef.MySql { /// <summary> /// MySql工作单元 /// </summary> public ab...
using System.Text; using System.Text.Json; namespace Minecraft.Tools { public static class Json { public static string JsonToString(object obj) { byte[] bytes = JsonSerializer.SerializeToUtf8Bytes(obj); return Encoding.UTF8.GetString(bytes); } } }
namespace KeesTalksTech.Utilities.UnitTests.Rpc.Examples { public static class IRemoteTimerExtensions { /// <summary> /// Pauses the specified timer. /// </summary> /// <param name="timer">The timer.</param> public static void Pause(this IRemoteTimer timer) { ...
using System; using System.Runtime.InteropServices; using System.Text; namespace IntelligentDemo.Services { public class MidiWrapper : IDisposable { // Wrapper over code from https://www.codeguru.com/columns/dotnet/making-music-with-midi-and-c.html private int _handle = 0; public Midi...
using System; namespace Tulpep.PayULibrary.Models.Response.Response_PayUPayments.CreditCard { public class RootPayUPaymentCreditCardResponse { //Format: Alphanumeric Size: //Description: The overall response code. ERROR, SUCCESS. public string code { get; set; } //Format: Alpha...
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using AdventOfCode2019.Puzzles.Day12; using AdventOfCode2019.Puzzles.Extensions; using Xunit; namespace AdventOfCode2019.Puzzles.Tests.Day12 { public class TheNBodyProblemTests { [Fact] public asyn...
namespace MRTKExtensions.Audio { public class ConfirmSoundMessage { } }
using System; using GraphQL.Types; using QuantoAgent.Database; using QuantoAgent.Models; namespace QuantoAgent.Web.GQLSchema { public class ManagementMutation : ObjectGraphType<object> { public ManagementMutation() { Name = "Mutation"; Field<TokenType>("Login", argu...
using System; using System.IO; using System.Linq; namespace Xtr { public class Locator { private static string GetNugetHome() => Path.Combine( Environment.GetEnvironmentVariable("USERPROFILE") ?? Environment.GetEnvironmentVariable("HOME"), ".nuget"); public ...
// <copyright file="GroupParserTest.cs" company="Fubar Development Junker"> // Copyright (c) 2016 Fubar Development Junker. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // </copyright> using System; using Xunit; namespace BeanIO.Parser.Gro...
using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; namespace Lab_03.Core { public class VigenereAnalysis { public VigenereAnalysis(string cipherText) => VigenereDecrypter = new VigenereDecrypter(cipherText); public VigenereDecrypter Vigene...
using Prism.Events; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input...
using System; using System.Diagnostics.CodeAnalysis; using Npgsql; using Server.Dal.Contract; using Server.Dal.Exception; namespace Server.Dal.Provider { public class PostgresDataExceptionManager : IDataExceptionManager { public System.Exception Normalize([NotNull] System.Exception exception) {...
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Hinode.Izumi.Framework.Extensions; using MediatR; namespace Hinode.Izumi.Services.GameServices.CalculationService.Queries { public record GetActionTimeQuery(long DefaultTime, int UserEnergy) : IRequest<long>; public...
using System; using System.Threading; namespace QS.Osm.Loaders { public abstract class OsmDataLoader { private static readonly NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger(); protected CancellationTokenSource cancelTokenSource = new CancellationTokenSource(); protected IOsmService Osm { get; }...
namespace MvcTurbine.Web.Modules { using System.Collections.Generic; using System.Collections.ObjectModel; using System.Web; using ComponentModel; /// <summary> /// Default implementation of <see cref="IHttpModuleManager"/>. /// </summary> public class HttpModuleManager : IHttpModuleManager { pr...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging;...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class FileDataParser { private AEMDataParser _parser; private List<string> _keyCache = new List<string>(); public bool Parse(string strFile, string key) { _parser = new AEMDataParser(strFile); if (!_...
// Copyright (c) zhenlei520 All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Threading.Tasks; using EInfrastructure.Core.AspNetCore.Api; using EInfrastructure.Core.Configuration.Exception; ...
namespace Gu.State { using System; using System.ComponentModel; /// <summary>A tracker that tracks the difference between tow instances.</summary> public interface IDirtyTracker : INotifyPropertyChanged, IDisposable { /// <summary>Gets the settings specifying how tracking and equality is pe...
using System.Collections.Generic; using Project.Domain.SeedWork; namespace Project.Domain.AggregatesModel { /// <summary> /// 确定哪些标签可见 /// </summary> public class ProjectVisibleRule:Entity { public int ProjectId { get; set; } public bool Visible { get; set; } pu...
using AsmResolver.PE.DotNet.Metadata.Tables; using AsmResolver.PE.DotNet.Metadata.Tables.Rows; using Xunit; namespace AsmResolver.PE.Tests.DotNet.Metadata.Tables.Rows { public class ParameterDefinitionRowTest { [Fact] public void ReadRow_SmallString() { var peImage = PEImage...
namespace LifeCardGameCP.Data; public enum EnumFirstCardCategory { None = 0, Career = 1, Family = 2, Adventure = 3, Wealth = 4 }
using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Xml; using System.Xml.Linq; using Sgml; namespace Xamarin.Android.ApiTools.DroidDocImporter { class HtmlLoader { // okay, SgmlReader itself has something similar, but I need something that makes sure to resolve only ...
using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using CsvHelper; using Flightbook.Generator.Models.Registrations; namespace Flightbook.Generator.Import { internal class RegistrationsImporter : IRegistrationsImporter { public List<RegistrationPrefix> Ge...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using SideLoader; using UnityEngine; namespace PvP { public class Spectate : MonoBehaviour { public static Transform CameraTransform => VideoCamera.Instance.VideoCameraTrans; public static Camera FreeCamera ...
namespace Podium { public interface IRating { public double CurrentRating { get; set; } public double OriginalRatingDeviation { get; set; } } public interface IPlayer : IRating { /// <summary> /// t /// </summary> public int TimeSinceLastPlayed { get...
// PennyLogger: Log event aggregation and filtering library // See LICENSE in the project root for license information. using System.Diagnostics; namespace PennyLogger.Internals.Estimator { /// <summary> /// Helper functions for bit twiddling operations /// </summary> internal static class BitTwiddle...
using System; using System.Collections.Generic; using MonoTouch.Foundation; using MonoTouch.UIKit; namespace MonoDevelopTouchCells { public class DataSource : UITableViewDataSource { private List<Item> Data { get; set; } public DataSource (IEnumerable<Item> data) { this.Data = new List<Item>(data); } ...
namespace Bet.Autoflow { /// <summary> /// The Conditional guards for the execution of the next state. /// </summary> /// <typeparam name="T"></typeparam> /// <typeparam name="TContext"></typeparam> public interface IGuardCondition<T, TContext> { /// <summary> /// Determines...
using Sharpnado.Shades.iOS; namespace Sharpnado.Tabs.iOS { public static class Preserver { public static void Preserve() { iOSShadowsRenderer.Initialize(); iOSTapCommandEffect.Initialize(); iOSTintableImageEffect.Initialize(); iOSViewStyleEffect....
using FluentAssertions; using System.Linq; using System.Threading.Tasks; using WebExtensions.Net.BrowserExtensionIntegrationTest.Infrastructure; namespace WebExtensions.Net.BrowserExtensionIntegrationTest.Tests { [TestClass(Description = "browser.commands API")] public class CommandsApiTests { pri...
using System; using Cake.Core.IO; namespace Cake.IISExpress { /// <summary> /// /// </summary> public class AppPathBasedIISExpressSettings : IISExpressSettings { /// <summary> /// /// </summary> /// <param name="appPath"></param> public AppPathBasedIISExpre...
namespace ChatCode.Bot.Models { public sealed class CreateAnalysisModel { public string Text { get; set; } } }
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Elsa.Activities.Permission.Services { public interface IPermissionChecker { Task<bool> IsInUsers(IEnumerable<string> users); Task<bool> IsInRoles(IEnumerable<string> roles); Task<b...
// Copyright (c) William Kent. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for full license information. using System; namespace MSIExtract.ShellExtension { /// <summary> /// Describes the state of a subclass of <see cref="ExplorerCommandBase"/>. /// </sum...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SPICA.Formats.CtrGfx.AnimGroup { class GfxAnimGroupViewUpdater : GfxAnimGroupElement { public GfxAnimGroupViewUpdater() { ObjType = GfxAnimGroupObjType.View...
using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using Graph3D.Vrml.Fields; using Graph3D.Vrml.Nodes; using Graph3D.Vrml.Tokenizer; namespace Graph3D.Vrml.Parser { public class ParserContext { private readonly Vrml97Tokenizer _tokenizer; private readonly Nod...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Engine.Attributes; namespace OgrePlugin { [NativeSubsystemType] public class TransformKeyFrame : KeyFrame { internal static TransformKeyFrame createWrapper(IntPtr nativeObject, object[] args) ...
using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using MVC_Begin.Models; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; namespace MVC_Begin.Controllers { public class HomeController : Controller { public S...
using System; using System.Threading.Tasks; using Newtonsoft.Json; using Microsoft.Extensions.Logging; using Microsoft.Azure.Devices; namespace CrazyTechLabs.LoraIotHubBridge{ static public class BridgeService { public static async Task Bridge(dynamic httpPayload, ILogger log) { ...
using System; using MSProject = NetOffice.MSProjectApi; namespace NetOffice.MSProjectApi.Tools { /// <summary> /// Custom task pane UserControl instance may implement this interface to be notified about the lifetime of the custom task pane. /// </summary> public interface ITaskPane : OfficeApi.Tools.ITa...
using System.Diagnostics; namespace OME.Logging.ExceptionLogging { internal class FormattedEventLogTraceListener { private EventLog eventLog; private TextFormatter formatter; public FormattedEventLogTraceListener(EventLog eventLog, TextFormatter formatter) { this.e...
namespace Tuple { using System; using System.Linq; public class StartUp { static void Main() { string[] input = Console.ReadLine().Split(" ", StringSplitOptions.RemoveEmptyEntries).ToArray(); Tuple<string, string> tuple = new Tuple<string, string>($"{input[0]} {i...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; using XamaFilm.Models; using XamaFilm.ViewModels.Base; namespace XamaFilm.ViewModels { public class SeriesListViewModel : ViewModelBase { public SeriesListViewModel() { LoadData(); } private async vo...
using System; using Microsoft.CodeAnalysis.CSharp; using Microsoft.OpenApi.Models; namespace Atc.Rest.ApiGenerator.SyntaxGenerators.Api { // TODO: FIX THIS - Use CompilationUnit public class SyntaxGeneratorSwaggerDocOptions { private readonly string fullNamespace; private readonly OpenApiDo...
using System; using System.Collections.Generic; using RediSharp.RedIL.Enums; using RediSharp.RedIL.Nodes; using RediSharp.RedIL.Resolving.Attributes; using StackExchange.Redis; namespace RediSharp.RedIL.Resolving.Types { class WhenEnumResolverPack { private static readonly Dictionary<When, string> _map...
namespace Telstra.Twins.Semantics { public static class PowerUnit { public const string Watt = "watt"; public const string Microwatt = "microwatt"; public const string Milliwatt = "milliwatt"; public const string Kilowatt = "kilowatt"; public const string Megawatt = "meg...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Diagnostics.Contracts; namespace System.IO { /// <summary>Contains internal path helpers that are shared between many projects.</summary> internal...
using Newtonsoft.Json; namespace N3O.Umbraco.Payments.Bambora.Client { public class ThreeDSecureCardResponse { [JsonProperty("cres")] public string Cres { get; set; } } }
using Allure.NUnit.Attributes; using OpenQA.Selenium; using OrangeHRM.DTO; using OrangeHRM.FrameworkComponents; namespace OrangeHRM.Pages.UserPages { public class SystemUsersPage : AbstractPage<SystemUsersPage_Selectors> { private AddUserPage _addUserPage; public SystemUsersPage(AppManager p)...
using AppDigitalCv.Business.Interface; using AppDigitalCv.Domain; using AppDigitalCv.Repository; using AppDigitalCv.Repository.Infraestructure.Contract; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace AppDigit...