text stringlengths 13 6.01M |
|---|
using EddiEvents;
namespace EddiNavigationService
{
public interface IQueryResolver
{
QueryType Type { get; }
RouteDetailsEvent Resolve ( Query query );
}
}
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Sistema_de_Vendas
{
public partial class Form1 : Form
{
DataTable dt = new Dat... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;
usin... |
using NGeoNames.Entities;
using System;
using System.Globalization;
namespace NGeoNames.Parsers
{
/// <summary>
/// Provides methods for parsing an <see cref="ExtendedGeoName"/> object from a string-array.
/// </summary>
public class ExtendedGeoNameParser : BaseParser<ExtendedGeoName>
{
pr... |
using EPiServer;
using EPiServer.Core;
using EPiServer.ServiceLocation;
using EPiServer.Web.Mvc;
using EpiserverSiteFromScratch.Models.Pages;
using EpiserverSiteFromScratch.Models.ViewModels;
using System.Web.Mvc;
namespace EpiserverSiteFromScratch.Controllers
{
public class StartPageController : PageController<S... |
using System;
using MongoDB.Bson;
using MongoDB.Driver;
using System.Collections.Generic;
using ClassLibrary.Models;
using System.Linq;
namespace MongoFeeder.Services
{
public class DataBaseTaker
{
public Car GerCarById(ObjectId id)
{
var db = DBConnection.DBConnectionInstance();
... |
namespace DZzzz.Net.Serialization.Interfaces
{
public interface ISerializer<T>
{
T Serialize<TK>(TK @object);
TK Deserialize<TK>(T value);
}
} |
namespace PhotonInMaze.Common.Controller {
public interface IArrowButtonController {
bool IsArrowPresent();
void ReinitializeArrowHintsCount();
}
}
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using SpaceHosting.Index.Sparnn.Distances;
using SpaceHosting.Index.Sparnn.Helpers;
using MSparseVector = MathNet.Numerics.LinearAlgebra.Double.SparseVector;
namespace SpaceHosting.Index.Sparnn.Clusters
{
internal seal... |
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DAL.Models
{
public class Shipping : IModel
{
public int ShippingId { get; set; }
public string CompanyName { get; set; }
public de... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Kingdee.CAPP.UI.ProcessDataManagement
{
/// <summary>
/// 类型说明:公用输入界面
/// 作 者:jason.tang
/// 完成时间:2013-03... |
using System;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Atc.CodeAnalysis.CSharp.SyntaxFactories
{
public static class SyntaxAttributeListFactory
{
public static AttributeListSyntax Create(string attributeName)
{
if (attributeName == ... |
using System;
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
public class VoidBaseEventReferenceUsage
{
public const int EVENT = 0;
public const int EVENT_INSTANCER = 1;
public const int COLLECTION_CLEARED_EVENT = 2;
public const int LIST_CLEARED_EVENT = 3;
public c... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Recursion
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Enter a number");
int n = Convert.ToInt32(Console.ReadLine());
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ejercicio4
{
class Program
{
static void Main(string[] args)
{
/*Calculadora
suma todo void
resta no recibe pero ret... |
using Pe.Stracon.SGC.Infraestructura.QueryModel.Contractual;
using Pe.Stracon.SGC.Infraestructura.Proxy.SAPProvService;
using Pe.Stracon.SGC.Infraestructura.Proxy.SAPBienService;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tas... |
using Alabo.Data.Targets.Iterations.Domain.Entities;
using Alabo.Domains.Repositories;
using MongoDB.Bson;
namespace Alabo.Data.Targets.Iterations.Domain.Repositories
{
public interface IIterationRepository : IRepository<Iteration, ObjectId>
{
}
} |
using System;
public interface IMovableBehaviour : IBaseBehaviour
{
ITransform CurrentTransform { get; }
ITransform TargetPoint { get; set; }
Action OnSetMovePoint { get; set; }
void SetMovePoint(ITransform transform);
void Clean();
bool CheckDestination();
} |
using System;
using Unity.Burst;
using Unity.Collections;
using Unity.Entities;
using Unity.Jobs;
using Unity.Mathematics;
using Unity.Rendering;
using Unity.Transforms;
using UnityEngine.PlayerLoop;
[Serializable]
public struct BallOriginalTranslation : IComponentData
{
public float3 Value;
}
public partial clas... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Data;
namespace DSSAHP
{
public class RoundNumbersConverter : IValueConverter
{
public object Convert(object value... |
using System;
using FactoryMethod.Pizza;
namespace FactoryMethod
{
class Program
{
static void Main(string[] args)
{
IAnimal animal = AnimalFactory.CreateAnimalObject(Animals.Dog);
animal.MakeSound();
Pizza.Pizza pizza = PizzaFactory.CreatePizza(Pizzas.Maxi... |
using System;
using System.Collections.Generic;
namespace ServiceDeskSVC.DataAccess.Models
{
public partial class AssetManager_Software
{
public AssetManager_Software()
{
this.AssetManager_AssetAttachments = new List<AssetManager_AssetAttachments>();
}
public int Id... |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace test
{
public class FoodItem : MonoBehaviour
{
void OnTriggerEnter2D(Collider2D other) {
if (other.gameObject.GetComponent<PlayerController>())
... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(TimeInteractable))]
public class PlatformAtoB : MonoBehaviour
{
[SerializeField, Tooltip("Transform of point A, also the start position")]
private Transform m_pointA;
[SerializeField, Tooltip("Transform... |
using ApiSGCOlimpiada.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ApiSGCOlimpiada.Data.LogDAO
{
public interface ILogDAO
{
IEnumerable<Log> GetAll();
Log Find(long id);
bool Add(Log log);
bool Update(Log log... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Negocios;
using DTO;
namespace Apresentacao
{
public partial class FrmMenuAcaoBanca : Form
... |
using Newtonsoft.Json;
namespace Infra.Model
{
public class itemRequest
{
public string responsavel { get; set; }
public string titulo { get; set; }
public string descricao { get; set; }
public string estado { get; set; }
}
} |
using System.Threading.Tasks;
using Airelax.Infrastructure.Map.Responses;
namespace Airelax.Infrastructure.Map.Abstractions
{
public interface IGeocodingService
{
Task<GeocodingInfo> GetGeocodingInfo(string address);
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CommandLine;
using CSBaseLib;
using MessagePack;
namespace ChatServer
{
public class PKHRoom : PKHandler
{
List<Room> RoomList = new List<Room>();
private int StartRoomNumber;
public void SetRo... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using UnityEngine.SceneManagement;
//TODO:
// В сохранения добавить Лист с квестами
// Решить вопрос с нажатием на кнопки клавиатуры
public class... |
using Kafka1.Models;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Core.IRepositories
{
public interface IOrderRepository
{
Task<string> createOrder(OrderRequest orderRequest, CancellationToken cancellationToken);
... |
using Backend.Model.PerformingExamination;
using System.ComponentModel.DataAnnotations.Schema;
namespace Backend.Model
{
public class SurveyAboutDoctor
{
private int examination;
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public int Beha... |
using System;
using System.Collections.Generic;
using Conditions.Guards;
using Properties.Core.Interfaces;
namespace Properties.Core.Objects
{
public class Landlord : LifetimeBase, IReferenceable<Landlord>
{
private string _givenName;
private string _familyName;
private string _knownAs... |
using IdentityServer3.Shaolinq.DataModel.Interfaces;
using Shaolinq;
namespace IdentityServer3.Shaolinq.DataModel
{
[DataAccessModel]
public abstract class IdentityServerDataAccessModel :
DataAccessModel,
IIdentityServerClientDataAccessModel,
IIdentityServerScopeDataAccessModel,
IIdentityServerOperationalDa... |
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using UnityEditor;
public static class CreateCachedScrollRectEditor
{
[MenuItem("GameObject/UI/Vertical Cached Scroll View", false, 2063)]
public static void CreateVerticalScrollRect()
{
GameObject root = GetOrCreateCanvasGa... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TeleportScript : MonoBehaviour {
public GameObject destination;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
//Teleport ball to new position wh... |
using UnityEngine;
using UnityAtoms.MonoHooks;
namespace UnityAtoms.MonoHooks
{
/// <summary>
/// Event Instancer of type `Collider2DGameObject`. Inherits from `AtomEventInstancer<Collider2DGameObject, Collider2DGameObjectEvent>`.
/// </summary>
[EditorIcon("atom-icon-sign-blue")]
[AddCompone... |
using Android.App;
using Android.OS;
using Android.Widget;
using Java.IO;
using Java.Lang;
using Java.Util;
using SkiaSharp;
using SkiaSharp.Views.Android;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Packaged_Database
{
[Activity(Label = "DrawChordActivity")]
public class DrawChordA... |
using System;
namespace Euler_Logic.Problems {
public class Problem19 : ProblemBase {
public override string ProblemName {
get { return "19: Counting Sundays"; }
}
public override string GetAnswer() {
return Solve().ToString();
}
private int Solve(... |
using Microsoft.AspNetCore.Razor.TagHelpers;
using System.Threading.Tasks;
namespace Wee.UI.Core.TagHelpers
{
[HtmlTargetElement("bootstrap-panel-group")]
public class PanelGroupTagHelper : TagHelper
{
[HtmlAttributeName("class")]
public string PanelClass { get; set; }
public PanelGroupTagHelper()
... |
using System;
using System.Linq;
using System.Collections.Generic;
class RnaTranscription4
{
public static string ToRna(string nucleotide)
{
return string.Concat(nucleotide.Select(x => ("CGTA".Contains(x) ? RnaCodes[x] :
throw new ArgumentException($"Invalid argument '{x}' specifie... |
using Microsoft.AspNet.Identity;
using Microsoft.Owin;
using Microsoft.Owin.Security.Cookies;
using Owin;
using System.Diagnostics.CodeAnalysis;
namespace Proxynet
{
[ExcludeFromCodeCoverage]
public partial class Startup
{
public void ConfigureAuth( IAppBuilder app )
{
app.UseC... |
using System;
namespace EPI.Strings
{
public static class StringIntInterConvert
{
/// <summary>
/// Implement string/integer interconversion functions
/// Should be able to handle negative numbers
/// Cannot use built-in parse/ToString functions
/// </summary>
public static int StringToInt(string value)... |
using Android.App;
using Android.Content.Res;
namespace MobileCollector.projects
{
public class lspContextManager: BaseContextManager
{
public lspContextManager(AssetManager assetManager, Activity mainContext)
: base(Constants.FILE_LSP_FIELDS, assetManager, mainContext)
... |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using Newtonsoft.Json;
namespace FindAndCopyFiles
{
[JsonObject(MemberSerialization.OptIn)]
class FindFilesConfiguration
{
[JsonProperty]
private
List<string> _from = new List<string>();
... |
using System;
using System.Linq.Expressions;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using SFA.DAS.PAS.Account.Api.ClientV2;
using SFA.DAS.PAS.Account.Api.ClientV2.Configuration;
using StructureMap;
namespace SFA.DAS.ProviderCommitments.Web.LocalDevRegistry
{
public class Loc... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using SimpleTaskListSPA.Data;
namespace SimpleTaskListSPA.Infrastructure
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class CorrectDateAt... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Gun : MonoBehaviour
{
[SerializeField]
[Range(0.5f, 1.5f)]
private float fireRate = 1;
[SerializeField]
[Range(1, 10)]
private int damage = 1;
[SerializeField]
private Transform f... |
using DChild.Inputs;
using Sirenix.OdinInspector;
using UnityEngine;
namespace DChild.Gameplay.Player
{
public class LadderClimb : MonoBehaviour
{
[SerializeField]
[TabGroup("Sensor")]
private RaycastSensor m_ladderSensor;
[SerializeField]
[TabGroup("Configuration")]
... |
using System;
using System.Collections.Generic;
using System.Threading;
namespace Training.Framework
{
public interface Handles<T>
{
void Handle(T message);
}
}
|
using DFC.ServiceTaxonomy.Banners.Models;
using OrchardCore.ContentManagement;
using OrchardCore.ContentManagement.Metadata.Models;
namespace DFC.ServiceTaxonomy.Banners.ViewModels
{
public class BannerPartViewModel
{
public string? WebPageName { get; set; }
public string? WebPageURL { get; s... |
using System;
using System.Collections.Generic;
namespace Groceries
{
public class Order
{
public User User{ get; set; }
public List<Product> Products{ get; set; }
}
}
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace PiDataAdayProje.Models.Entities
{
public class Musteri
{
public Guid Id { get; set; }
public Guid IsyeriId { get; set; }//FK
public st... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using Models;
namespace Data.Migrations
{
using System.Data.Entity.Migrations;
internal sealed class Configuration : DbMigrationsConfiguration<Data.BookShopContext>
{
public Configuratio... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UFIDA.U9.SM.SO;
using HBH.DoNet.DevPlatform.EntityMapping;
using UFSoft.UBF.Business;
using U9.VOB.Cus.HBHTianRiSheng.HBHHelper;
using UFSoft.UBF.PL;
namespace U9.VOB.Cus.HBHTianRiSheng.BEPlugIn
{
public class ... |
using UnityEngine;
using System.Collections;
public class titlePlay : MonoBehaviour {
private GUIStyle style;
void Start(){
style = new GUIStyle();
style.fontSize = 30;
style.fontStyle = FontStyle.Italic;
}
void OnGUI(){
Rect rect = new Rect(220, 110, 400, 300);
GUI.Label(rect, "Play !!", style);
r... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using Traditional.PageObjects;
namespace Traditional
{
public class TraditionalApproach
{
private HackathonPage hackathonPage;
[Se... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using AccManagerKw.Common;
using DataAccess;
using Model;
using Model.Interfaces;
using Utilities;
names... |
using System;
namespace AckermannCalculation
{
class Program
{
static void Main(string[] args)
{
string input = "";
int inputM = -1;
int inputN = -1;
int result = 0;
bool invalidInput = false;
do
{
... |
using System;
using System.Collections.Generic;
using PterodactylEngine;
using Xunit;
namespace UnitTestEngine
{
public class TestFlowchartNode_NodeHelper : TheoryData<string, List<FlowchartNode>, int, string>
{
public TestFlowchartNode_NodeHelper()
{
Add("First", null, 0, "First")... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using IdomOffice.Interface.BackOffice.Booking;
using IdomOffice.Interface.BackOffice.Booking.Entity;
using V50_IDOMBackOffice.AspxArea.Booking.Controllers;
using V50_IDOMBackOffice... |
using Framework.Core.Common;
using OpenQA.Selenium;
using OpenQA.Selenium.Support.PageObjects;
namespace Tests.Pages.Oberon.CustomForm.CustomFormBuild
{
public class BuildPageAddCodeDialog : CustomFormBuildPage
{
public BuildPageAddCodeDialog(Driver driver) : base(driver) { }
publi... |
using System;
using System.Collections.Generic;
using System.Text;
namespace SAAS.FrameWork.Extensions
{
public static partial class TypeExtensions
{
#region IsStringType
/// <summary>
/// Gets a value indicating whether the <see cref="T:System.Type"></see> is string type
//... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity.Core;
namespace CNWTT.Models.DAO
{
public class AccountInforDAO
{
public static int addAccountInfor(accountInfor accIn)
{
int idAccInfo = -1;
using (var db = n... |
using System;
using System.Collections.Generic;
using System.Linq;
namespace Crystal.Plot2D.Charts
{
public sealed class MinorNumericTicksProvider : ITicksProvider<double>
{
private readonly ITicksProvider<double> parent;
private Range<double>[] ranges;
internal void SetRanges(IEnumerable<Range<double... |
using Divar.Core.Domain.Shared.ValueObjects;
using Divar.Core.Domain.UserProfiles.Entities;
using Divar.Core.Domain.UserProfiles.ValueObjects;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Divar.Infrastructures.Data.SqlServer.UserProfiles
{
public class User... |
using UnityEngine;
using System.Collections;
public class BONUS : MonoBehaviour {
public static int AllStars;
// Use this for initialization
void Start ()
{
Object[] b = GameObject.FindObjectsOfType (typeof(BONUS));
AllStars = b.Length;
}
// Update is called once per frame
void Update ()
{
}
... |
using System;
using System.Drawing.Imaging;
using System.Collections;
using System.Drawing;
using System.IO;
using System.Security.Cryptography;
namespace Com.Colin.Lib
{
/// <summary>
/// 枚举,生成缩略图模式
/// </summary>
public enum ThumbnailMod : byte
{
/// <summary>
/// HW
/// ... |
namespace BettingSystem.Domain.Games.Models.Matches
{
using System;
using Exceptions;
using FakeItEasy;
using FluentAssertions;
using Xunit;
using static StadiumFakes.Data;
public class StadiumSpecs
{
[Fact]
public void ValidStadiumShouldNotThrowException()
{
... |
namespace WinAppDriver.UI
{
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using System.Windows.Input;
using SystemWrapper.Windows.Input;
using WinUserWrapper;
internal class Keyboard : IKeyboard
{
[Supp... |
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
#if UNITY_EDITOR
using UnityEditor;
#endif
public static class UltiDraw {
[System.Serializable]
public class GUIRect {
[Range(0f, 1f)] public float X = 0.5f;
[Range(0f, 1f)] public float Y = 0.5f;
[Range(0f, 1f)] public float W = ... |
using System;
using System.Collections.Generic;
using System.Linq;
using StarBastardCore.Website.Code.Game.Gameworld.Geography;
namespace StarBastardCore.Website.Code.Game.Gameplay.GameGeneration
{
public class SystemGenerator
{
public List<PlanetarySystem> Generate()
{
var system ... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace TicketSystem.Models
{
public class Ticket
{
//
public int ticketID { get; set; }
public string category { get; set; }
[DataTyp... |
using Alabo.Framework.Core.WebApis.Controller;
using Alabo.Framework.Core.WebApis.Filter;
using Alabo.Framework.Tasks.Schedules.Domain.Entities;
using Alabo.Framework.Tasks.Schedules.Domain.Services;
using Microsoft.AspNetCore.Mvc;
using MongoDB.Bson;
namespace Alabo.Framework.Tasks.Schedules.Controllers {
[ApiEx... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Oracle.ManagedDataAccess.Client;
using Excel = Microsoft.Office.Interop.Ex... |
using DrivingSchool_Api;
using Microsoft.EntityFrameworkCore;
using Models.ViewModels;
using Repository.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace Repository.Implementations
{
public class BookingRepository : IB... |
using System;
using System.Collections.Generic;
namespace EPI.Sorting
{
/// <summary>
/// You are given a set of closed intervals. Design an efficient algorithm to find the
/// minimum number of numbers that covers all the intervals
/// </summary>
/// <example>
/// Intervals: {[0,3],[2,6],[3,... |
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace attendance
{
/// <summary>
/// Interaction logic for AdminProps.xaml
/// </summary>
public partial class AdminProps : Window
{
Connection con = new Connection();
... |
using System;
class StringsTypeCasting
{
static void Main()
{
string firstWord = "Hello";
string secondWord = "World!";
object bothWords = firstWord + " " + secondWord;
string finalWords = bothWords.ToString();
Console.W... |
using System.Configuration;
namespace SolarSystemWeb.Models.Application
{
public class ApplicationSettings
{
private static volatile ApplicationSettings _instance;
private static readonly object SyncRoot = new object();
private ApplicationSettings() { }
public stat... |
using System;
namespace HomeAutomation.Referential.Models
{
public abstract class Thing : IThing
{
protected Thing()
{
}
protected Thing(Guid id, string label)
{
Id = id;
Label = label;
}
public Guid Id { get; set; }
publ... |
using System;
using System.Diagnostics;
using System.Drawing;
using System.Windows.Forms;
using System.Xml;
namespace gView.Framework.system.UI
{
public partial class AboutBox : Form
{
private bool _showCredits = true;
public AboutBox()
: this(true)
{
}
pub... |
/* Drink.cs
* Author: Agustin Rodriguez
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using DinoDiner.Menu;
namespace DinoDiner.Menu
{
/// <summary>
/// this is the base class for Drinks in Dino-Diner
/// </summary>
public abstract class Drink : I... |
using System;
using System.Collections.Generic;
using System.Linq;
using DAL.Contracts;
using DAL.Models;
namespace DAL.Repositories
{
public class GenreRepository : BaseRepository<Genre>, IGenreRepository
{
public GenreRepository(MoviesContext context)
: base(context)
{
}
... |
using Cs_Notas.Dominio.Entities;
using Cs_Notas.Dominio.Interfaces.Repositorios;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cs_Notas.Infra.Data.Repositorios
{
public class RepositorioTransacaoDoi: RepositorioBase<TransacaoDoi>, IRe... |
using Alabo.Data.People.PartnerCompanies.Domain.Entities;
using Alabo.Datas.UnitOfWorks;
using Alabo.Domains.Repositories;
using MongoDB.Bson;
namespace Alabo.Data.People.PartnerCompanies.Domain.Repositories {
public class PartnerCompanyRepository : RepositoryMongo<PartnerCompany, ObjectId>,IPartnerCompanyRepository ... |
using System;
using Framework.Core.Common;
using Tests.Data.Oberon;
using OpenQA.Selenium;
using OpenQA.Selenium.Support.PageObjects;
namespace Tests.Pages.Oberon.Event
{
public class EventBasePage : SinglePane
{
public EventBasePage(Driver driver) : base(driver) { }
#region Page ... |
using Microsoft.ApplicationInsights;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using TriangleCollector.Services;
namespace TriangleCollector.Services
{
class Excha... |
namespace VnStyle.Web.Controllers.Api.Models
{
public class ResetPassword
{
public string Password { get; set; }
}
} |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MoveEnemyTile : ActiveTile {
EnemyController childEnemy;
WeaponPanelOperator weaponPowerOperator;
public TileSetup tilesetup;
private void Awake(){
weaponPowerOperator =(WeaponPanelOperator) FindObjec... |
using JhinBot.DiscordObjects;
namespace JhinBot.Database
{
public interface ITagRepository : IRepository<Tag>
{
Tag RetrieveByName(ulong guildID, string name);
}
}
|
using System.Collections.Generic;
using UnityEngine;
public class SpawnAsteroid : MonoBehaviour
{
public int CountAsteroid;
public List<GameObject> _arrayprefubAsteroid = new List<GameObject>();
public float _incrementSpeedAsteroid;
private int _counterForSpawn = 0;
private CheckOnBarrier _checko... |
using System;
using System.Windows;
using System.Windows.Input;
using CatalogSearch.ViewModels;
namespace CatalogSearch.Views
{
public partial class CatalogSearchWindow : Window
{
private readonly CatalogSearchViewModel viewModel;
public CatalogSearchWindow(CatalogSearchViewModel vm)
... |
using System;
using Xunit;
using Poker.Classes;
using static Poker.Program;
namespace PokerTests
{
public class UnitTest1
{
/// <summary>
/// Tests for StraightFlush Ace Exception
/// </summary>
[Fact]
public void StraightFlushAceException()
{
Card c... |
using Discount.Grpc.Protos.v1;
using System.Threading.Tasks;
namespace Basket.Core.Interfaces
{
public interface IDiscountGrpcService
{
Task<CouponResponse> GetDiscount(string productId);
}
} |
using System;
using System.Collections.Generic;
using System.Text;
namespace AnyTest.ClientAuthentication
{
/// <summary>
/// \~english A model of a login result
/// \~ukrainian Модель результату входу користувача
/// </summary>
public class LoginResult
{
/// <summary>
... |
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Microsoft.ServiceFabric.Data.Collections;
namespace Microsoft.ServiceFabric.Data
{
public class Transaction : ITransaction
{
public Transaction()
{
}
public async Task CommitAsync()
{
... |
using Framework.Core.Common;
using Framework.Core.Config;
using OpenQA.Selenium;
using OpenQA.Selenium.Support.PageObjects;
namespace Tests.Pages.Oberon.User
{
public class UserList: UserBasePage
{
private static string _url = AppConfig.OberonBaseUrl + "User/List?tenantId="; //"5037";
... |
using Project371.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assig_1.GUI
{
/// <summary>
/// Class that acts as a container for all the gui elements
/// </summary>
class GUIManager
{
/// <summary>
... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Library_App.Class_Lib;
namespace Library_App.Forms
{
public partial class DeleteStudentForm : F... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.