text
stringlengths
13
6.01M
namespace Sentry.Testing; public class FuncHandler : HttpMessageHandler { public Func<HttpRequestMessage, CancellationToken, HttpResponseMessage> SendAsyncFunc { get; set; } public bool SendAsyncCalled { get; set; } public FuncHandler(Func<HttpRequestMessage, CancellationToken, HttpResponseMessage> sendA...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Inventor; using Autodesk.DesignScript.Geometry; using Autodesk.DesignScript.Interfaces; using Autodesk.DesignScript.Runtime; using Dynamo.Models; using Dynamo.Utilities; using InventorLibrary.Geomet...
using SampleUWP.Common; using System; using System.Collections.ObjectModel; using System.Collections.Specialized; // Required for this sample to add Observable collection functionality using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace SampleUWP { public sealed partial class B06 : Page { ...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WordTree.Model { /// <summary> /// 计划记忆的单词 /// </summary> public class PlannedWord { [Key] public string Wordst...
using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.ModelConfiguration; namespace HospitalSystem.Models.Mapping { public class medical_recordMap : EntityTypeConfiguration<medical_record> { public medical_recordMap() { // Primary Key thi...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataAccess.Domain { class OrderItemModel { public string OrderId { get; set; } public string UserId { get; set; } } }
using Microsoft.Extensions.Configuration; namespace FeriaVirtual.Infrastructure { public interface ILoadConfiguration { IConfigurationRoot GetConfiguration { get; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace xKnight.Attacking { public class AttackCompletedEventArgs { public Attacker Attacker{get;private set;} internal AttackCompletedEventArgs(Attacker attacker) { Attacker=attacker...
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using FluentAssertions; using Moq; using NUnit.Framework; using Properties.Core.Interfaces; using Properties.Core.Objects; using Properties.Infrastructure.Data; using Properties.Infrastructure.Data.Interfaces; namespace Prope...
using DevExpress.Xpf.Core; using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Globalization; using System.Linq; using System.Reflection; using System.Threading; using System.Threading.Tasks; using System.Windows; namespace EvrakArşiv { /// <summary> ///...
using System.Collections.Generic; using System.Linq; using Microsoft.AspNetCore.Mvc; using TestApplication.Classes; using TestApplication.Services; namespace TestApplication.Controllers { [Route("api/[controller]")] [ApiController] public class SuggestController : ControllerBase { private read...
using System.Collections.Generic; using System.Linq; namespace E2 { public class Supermercado { List<Carrito> carritos; string producto; int cantidadDelProducto; public Supermercado (string producto, int cantidadDelProducto){ this.producto = producto; ...
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.Drawing.Imaging; using System.Drawing.Drawing2D; using System.IO; namespace 图片压缩小工具 { public class ImageHelper { public Image ResourceImage; private ImageFormat imageFormat = ImageFormat.Jpeg;...
namespace TripDestination.Web.MVC.Controllers.ChildActionControllers { using Services.Data.Contracts; using System.Web.Mvc; using TripDestination.Common.Infrastructure.Mapping; using System.Linq; using ViewModels.Shared; using Common.Infrastructure.Constants; using Microsoft.AspNet.Identity...
public class Solution { public int CompareVersion(string version1, string version2) { string[] s1 = version1.Split('.'); string[] s2 = version2.Split('.'); string cur1=null, cur2=null; for(int i=0; i<Math.Max(s1.Length, s2.Length); i++) { if (i<s1.Length) cur1 = s1[i]; ...
using System; using System.Linq; using System.Linq.Expressions; using PluginDevelopment.DAL.EF.IDAL; namespace PluginDevelopment.BLL { public abstract class BaseService<T> where T : class, new() { protected BaseService() { SetDal(); } public IBaseDal<T> Dal { get;...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Restaurant.Models; namespace Restaurant.Repositories { public class MessageRepository : IMessageRepository { private ApplicationDb...
using System.Collections; using System.Collections.Generic; using UnityEngine.SceneManagement; using UnityEngine; public class DeathMenu : MonoBehaviour { // This is the title of the main menu. public string mainMenuTitle; // This is a reference to the game manager. public GameManagement gameManager;...
using BDTest.Helpers.JsonConverters; using Newtonsoft.Json; namespace BDTest.Test; [JsonConverter(typeof(StoryTextConverter))] public record StoryText { [JsonProperty] public string Story { get; private set; } public StoryText(string story) { Story = story; } [JsonConstructor] p...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZM.TiledScreenDesigner { [JsonConverter(typeof(NoTypeConverterJsonConverter<Border>))] [TypeConverter(typeof(B...
//---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. // All rights reserved. // // This code is licensed under the MIT License. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentat...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Proprieta { public class SaleItem { private string _nameItem; private double _priceItem; public SaleItem(string nameItem, double priceItem) { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ASM.Entity { class SongResponse { public List<Song> ListSongs { get; set; } } }
// ReSharper disable UnusedMember.Global namespace RobX.Controller { /// <summary> /// This namespace contains classes and forms for Controller application which can control RobX robot over a network. /// </summary> internal static class NamespaceDoc { } }
namespace UsersLib.Service.Log { public interface IAccessLogger { void LogAssess(string login, bool isAutenticated, string accessTarget = null, string role = null); } }
using FunctionApp.Functions.Services; using Microsoft.Azure.Functions.Extensions.DependencyInjection; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; [assembly: FunctionsStartup(typeof(AzureFunctionApp.Startup))] namespace AzureFunctionApp { public class Startup : Functions...
namespace GIFU.Models { public class OrderShow { public int OrderId { get; set; } public int GoodId { get; set; } public string GoodsTitle { get; set; } public string GiverName { get; set; } public string PlaceTime { get; set; } public int? Amount { get; set; } ...
using System.Collections.Generic; namespace Tests.Data.Oberon { public class EmailAddress { public string Address = string.Empty; public bool DoNotEmail; public bool IsPrimary; public List<string> OptIn = new List<string>(); public List<string> OptOut = new Li...
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 Pronto.Common { public partial class SetTime : Form { public Set...
using Xunit; namespace WerkWerk.Test { using Model; public class WorkTests { [Fact] public void WorkNull_implicit_bool() { var work = new Work<TestWorkerData>( new WorkPipeline<TestWorkerData>() ); Assert.False((Work<TestWorkerDa...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Envelopes { class Program { static void Main(string[] args) { Envelope EnvelopeA = new Envelope("A"); Envelope EnvelopeB = new Enve...
using System; using System.Text.RegularExpressions; public class Solution { public bool IsNumber(string s) { string pattern = @"(?<valid>^\s*[+-]?(?:(?:\d+(?:\.\d*)?)|(?:\d*(?:\.\d+)))(?:[Ee][+-]?\d+)?\s*)"; Regex rx = new Regex(pattern); MatchCollection matches = rx.Matches(s); for...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Management; namespace LaunchpadMonitor { class ManagementObjectSampler : ISampler { ManagementObject managementObject; string propertyName; public ManagementObjectSampler(Ma...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using IRAP.Global; using IRAPShared; namespace IRAP.Entity.MDM { /// <summary> /// 质量标准 /// </summary> public class QualityStandard : CustomStandard { /// <summary> /// 首检应检数 ...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; namespace CSharp_Json { class Program { public static int contador = 1; public static RetornoAPIViewModel<object> result; public static string apiURLWS = "http:...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ControllerNave : MonoBehaviour { private Animator animator; // Use this for initialization void Start () { animator = GetComponent<Animator> (); } // Update is called once per frame void Update () { if (Input.Get...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using TrashCollectorV2.Models; namespace TrashCollectorV2.Contracts { public interface ICustomerRepository:IRepositoryBase<Customer> { Customer GetCustomer(int customerId); void CreateCustomer(Cust...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; namespace Javan.Models { public class ObligasiSecurity { [DatabaseGenerated(DatabaseGeneratedOption.None)] public int ID { get; set; } public string Kode { get; ...
using ExcelToJsonExtractor; using NUnit.Framework; namespace ExcelToJsonExtractorTest { public class ExcelFilerReaderTests { private ExcelFileReader _fileReader; [SetUp] public void Setup() { _fileReader = new ExcelFileReader(); } [Test] pu...
using Prism.Commands; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Threading; namespace _210819_slider_Textbox { class ViewModelTargil2 : DispatcherObject, I...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using StardewValley; namespace DialogueFramework { interface IModApi { event EventHandler<DialogueEventArgs> ChoiceDialogueOpened; } }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class HealthCollectable : MonoBehaviour { void OnTriggerEnter2D(Collider2D other) { PlayerMovementController controller = other.GetComponent<PlayerMovementController>(); if(controller != null) { ...
namespace AssessmentApp.Services.Messaging { using System.Threading.Tasks; public interface INewEmailSender { void SendEmail(Message message); Task SendEmailAsync(Message message); } }
namespace SciVacancies.Captcha.TextGenerators { public class FixedTextCaptchaTextGenerator : ICaptchaTextGenerator { private readonly string _text; public FixedTextCaptchaTextGenerator(string text) { _text = text; } public string GenerateText() { ...
using System; using System.Collections.Generic; using System.IO; using System.Text; namespace AtomicFileOperations { public static partial class AtomicFileOperation { /// <summary> /// Creates a new file, writes the specified byte array to the file, and then closes /// the file...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.SharePoint; using BELCORP.GestorDocumental.Common; using BELCORP.GestorDocumental.Common.Util; using BELCORP.GestorDocumental.BE.DDP; using BELCORP.GestorDocumental.DA.Sharepoint; using B...
using UnityEngine; public class Rotate : MonoBehaviour { [SerializeField] private Vector3 rotation = new Vector3(15f, 15f, 15f); // Update is called once per frame void Update() { this.transform.Rotate(this.rotation * Time.deltaTime); } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using System.Configuration; namespace StoreFront { public partial class CustomerAdminDetails : System.Web.UI.Page { ...
using System; using com.Sconit.Entity.ACC; namespace com.Sconit.Entity.VIEW { [Serializable] public partial class UserPermissionView : EntityBase { #region O/R Mapping Properties public Int32 UserId { get; set; } public string PermissionCode { get; set; } public string Perm...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebUI.Entity { public class Project { public int ProjectId { get; set; } public int Type { get; set; } public string Name { get; set; } public string SefUrl { get; set; } ...
using AutoMapper; using DotNetCoreIdentity.Application; using DotNetCoreIdentity.Application.CategoryServices.Dtos; using DotNetCoreIdentity.Application.Shared; using DotNetCoreIdentity.EF.Context; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Threading.Tasks; using ...
using System; using CC.Utilities.Configuration; using CC.Mobile.Services; namespace Groceries.Domain { public class AppConfiguration: Configuration<AppConfiguration> { public string _id{ get; set; } public string ApplicationIdentifier{ get; set; } public bool Debug { get; set; } public PlatformType Platform...
namespace Tutorial.Functional { using System; public interface ILocal { ILocal<T> Cast<T>(); } public interface ILocal<T> : ILocal { ILocal<T> Where(Func<T, bool> predicate); ILocal<TResult> Select<TResult>(Func<T, TResult> selector); ILocal<TResult> SelectMa...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; //********************************************************************** // // 文件名称(File Name):UpdateNodeHeatbeatRequest.CS // 功能描述(Description): // 作者(Aut...
using System; namespace HomeWork_7 { class Program { static void Main(string[] args) { string path = @"data.txt"; Repository rep = new Repository(path); Console.WriteLine("Здравствуйте ! Для демонстрации существующих записей нажмите 'Enter', для...
using Azure.Identity; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Auth; using Microsoft.WindowsAzure.Storage.Queue; using Newtonsoft.Json; using SCHackathon.Feature.CloudConnector.Models; using Sitecore.Diagnostics; using System; using System.Collections; using System.Collections.Special...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Input; namespace Leaf { public class Leaf { public CartesianVector pos { get; set; } public Radian angle { get; set; } public PhysicsVector acc { get; set; } pub...
using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace EvrakArşiv.Models { public class GeldiğiYer : EntityBase, INotifyPropertyChanged { public GeldiğiYer() { } [Key] [DatabaseGenerated(DatabaseGenerated...
using Microsoft.VisualStudio.TestTools.UnitTesting; using p27_euler; namespace p27_euler_Tests { [TestClass] public class SimplePrimeTests { SimplePrime sp = new SimplePrime(); [TestMethod] public void ZeroAndOneAreNotPrimeNumbers() { Assert.IsFalse(sp.isPrime(0...
// // Copyright (c) Autodesk, Inc. All rights reserved. // // This computer source code and related instructions and comments are the // unpublished confidential and proprietary information of Autodesk, Inc. // and are protected under Federal copyright and state trade secret law. // They may not be disclosed to, copi...
using BradescoPGP.Web.Areas.Portabilidade.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace BradescoPGP.Web.Areas.Portabilidade.Servicos { public enum ModoFiltro { Especialista, CPFStatus, NomeStatus, Null, Nome, ...
using System.Collections.Generic; using System.Threading.Tasks; using BlazorShared.Models.Doctor; using FrontDesk.Blazor.Services; using Microsoft.AspNetCore.Components; using Microsoft.JSInterop; namespace FrontDesk.Blazor.Pages { public partial class DoctorsPage { [Inject] IJSRuntime JSRuntime { get; se...
using System.Net; using System.Text; using JWT.Models; using JWT.Persistence; using JWT.ViewModels; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; namespace JWT.Controllers { [ApiController] [Route("[controller]")] public class AuthController : ControllerBase { priva...
// Copyright (c) 2018 FiiiLab Technology Ltd // Distributed under the MIT software license, see the accompanying // file LICENSE or or http://www.opensource.org/licenses/mit-license.php. using FiiiCoin.Wallet.Win.Common; using FiiiCoin.Wallet.Win.Models; using FiiiCoin.Wallet.Win.ViewModels.ShellPages; using GalaSoft....
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class PersScene7 : MonoBehaviour { Animator anim; [SerializeField] GameObject BagScene7; [SerializeField] AudioSource audioRus; [SerializeField] AudioSource a...
namespace T4WFI.App.Pages { public partial class WebFormExcluded : System.Web.UI.Page { } }
using System.Threading.Tasks; using AutoFixture; using Moq; using NUnit.Framework; using SFA.DAS.Encoding; using SFA.DAS.ProviderCommitments.Interfaces; using SFA.DAS.ProviderCommitments.Web.Mappers.Apprentice; using SFA.DAS.ProviderCommitments.Web.Models.Apprentice; using SFA.DAS.ProviderCommitments.Web.Services.Cach...
using App.Core.Interfaces.Dto; using App.Core.Interfaces.Dto.Requests; using App.Core.Interfaces.Dto.Responses; namespace App.Core.Interfaces.Services { public interface IAuthService { AuthRegisterResponseDto Register(AuthRegisterRequestDto request); AuthLoginResponseDto Login(AuthLoginRequestD...
namespace InitModule { internal class MyClass { } }
using AW.Business.Services.Requests.Contracts.Interfaces; using AW.Business.Services.Requests.Contracts.Models; using AW.Data.Context; using System; using System.Threading; using System.Threading.Tasks; namespace AW.Business.Services.Requests.Commands { public class RequestCommandHandler : IRequestCommandHandler ...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Web; /// <summary> /// Summary description for cPromocion /// </summary> /// [DataContract] public class cPromocion { public cPromocion() { // // TODO: Add constructor logic here // } [Da...
/*************************************** * * Body for Objects that uses Spine Animation * ***************************************/ using UnityEngine; namespace DChild.Gameplay.Objects { [System.Serializable] [RequireComponent(typeof(Rigidbody2D))] public class PhysicsTime : IsolatedTime, IPhysicsBo...
using OAuth.Models; using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Web; using System.Web.Http; namespace OAuth.Controllers { [Authorize] public class ImageController : ApiController { [...
using UnityEngine; public class Quit : MonoBehaviour { void Update() { // quitte l'application quand on appuie sur ESC if (Input.GetKeyDown(KeyCode.Escape)) { Application.Quit(); } } }
using SGCFT.Dominio.Entidades; using System; using System.Collections.Generic; using System.Data.Entity.ModelConfiguration; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SGCFT.Dados.Mapeamentos { public class RespostaMap : EntityTypeConfiguration<Resposta> { public Resp...
/****************************************** * * Soul Essence activates a specific effect when equipped with * a certain equipment * ******************************************/ namespace DChild.Gameplay.Combat { public interface ISoulEssenceHandler { int maxEssenceCount { get; } int cou...
using CaveGeneration.Content_Generation.Parameter_Settings; using CaveGeneration.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaveGeneration.Content_Generation.Map_Cleanup { public class CellularAutomata : MapCleanup { ...
using UnityEngine; using System.Collections; public class BulletBehavior : MonoBehaviour { public float bulletSpeed = 5; public float bulletLife = 5; public GameObject levelController; // Use this for initialization void Start () { GameObject cam = GameObject.FindGameObjectWithTag ("MainCamera"); levelCont...
namespace Otiport.API.Contract.Response.Users { public class LoginResponse : ResponseBase { public string AccessToken { get; set; } } }
namespace Alabo.Regexs { /// <summary> /// 正则表达式 /// </summary> public static class RegularExpressionHelper { /// <summary> /// 邮箱 /// </summary> public const string Email = @"^[\w-]+@[\w-]+\.[\w-]+$"; /// <summary> /// 中国手机号 /// ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleAppExam_KatkovISiP_21 { class Program { static void Main(string[] args) { int s = 0; Console.WriteLine("Введите длинну массива"); ushort n = ushort.Parse(C...
using UnityEngine; public class CachedListTest : MonoBehaviour { public void SetItems() { m_cachedList?.SetRows(m_itemsCount); } public void Clear() { m_cachedList?.ClearRows(); } public void InitCallback(int index, GameObject item) { item?.GetComponent<Cached...
using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.Data.Entity.Infrastructure; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using System.Web.Http.Description; using Alps.Web.Models; using Alps.Domain; namespace Alps.Web.Contr...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace DrugManufacturing.Entities { public class Drug { public int Id { get; set; } public string TradeName { get; set; } public string InternationalName { get; set; } public string ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using DevComponents.DotNetBar; using System.IO; using System.Xml; using DevComponents.DotNetBar.Rendering; using DevComponents.DotNetBar.Controls; using FI...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Configuration; using System.Data; using System.Data.SqlClient; using WindowsFormsApplication2; using System.IO; public partial class zjkdaochu : System.Web.UI.Page {...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Ideal.Ipos.RealTime.Skat.Model { public class Kartenspiel { private readonly Karte[] m_Karten = new Karte[32]; private readonly Farbe[] m_Farben = new[] { Farbe.Kreuz, Farbe.Pik, Farbe.Herz, Farbe.Karo ...
using IWorkFlow.DataBase; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWorkFlow.ORM { //发文 [Serializable] [DataTableInfo("B_EmailDocument", "id")] public class B_EmailDocument : QueryInfo { #r...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace TpGrupal.Models { public class Personajes { private int _Id; private string _Nombre; private int _Categoria; private string _Imagen; public int Id { get => _Id; set => _Id = ...
using AutoMapper; using MediatR; using Microsoft.Extensions.Logging; using Order.Application.Interfaces; using System.Threading; using System.Threading.Tasks; namespace Order.Application.Orders.v1.Commands.Update { public class UpdateCommand : IRequest { public int Id { get; set; } public stri...
using CutieBox.Core.Attributes; using Discord; using Discord.WebSocket; using System.Threading.Tasks; namespace CutieBox.Events { [PreInitialize] public class ReadyEvent { private readonly DiscordSocketClient _client; public ReadyEvent(DiscordSocketClient client) { cli...
using Zesty.Core.Entities; namespace Zesty.Core.Api.System { public class Check : ApiHandlerBase { public override ApiHandlerOutput Process(ApiInputHandler input) { return GetOutput(new { Message = Messages.Success }); } } }
using NIS.RightSystem.Data.Dao.AccessorInterface.Base; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NIS.RightSystem.Services.Base { public class ServiceImpl<PK, Entity> : IService<PK, Entity> where Entity : class { protec...
using IWorkFlow.DataBase; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWorkFlow.ORM { [Serializable] [DataTableInfo("B_CP_ExamApprovalOpinion", "")] public class B_CP_ExamApprovalOpinion : QueryInfo { [DataField(...
using System.Threading.Tasks; using Microsoft.Extensions.Hosting; using System.Threading; using Union.Gateway.Abstractions; namespace Union.Gateway.Transmit { public class UnionTransmitHostedService:IHostedService { private readonly UnionTransmitService jT808TransmitService; private readonly I...
namespace SampleService.IdentityServer.Constans { public class RoutePaths { public const string SignInUrl = "signin"; public const string SignOutUrl = "signout"; public const string ConsentUrl = "consent"; public const string ErrorUrl = "error"; } }
using System; using System.Collections.Generic; using System.Text; using ToDoManager.Models; using Prism.Events; namespace ToDoManager.Events { class AddTask : PubSubEvent<ToDoTask> { } }
using System; namespace Fuzzing.Fuzzers.Impl { public class LongIntegerFuzzer : TypeFuzzer<long> { private const int LongIntegerSize = sizeof (long); public override long Fuzz() { var data = new byte[LongIntegerSize]; RandomNumberGenerator.GetBytes(data); var result = BitConverter.ToInt64(data, 0); ...
using System.Collections.Generic; using Tomelt.Projections.Descriptors; using Tomelt.Projections.Descriptors.SortCriterion; namespace Tomelt.Projections.ViewModels { public class SortCriterionAddViewModel { public int Id { get; set; } public IEnumerable<TypeDescriptor<SortCriterionDescriptor>> Sor...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using KartObjects; using System.ComponentModel; using KartLib; using KartObjects.Entities.Documents; using KartSystem.Common; namespace KartSystem { public class TORG12Report:Document { public TORG12Report() ...