text
stringlengths
13
6.01M
using Fingo.Auth.Domain.Infrastructure.Interfaces; using Fingo.Auth.Domain.Projects.Interfaces; namespace Fingo.Auth.Domain.Projects.Factories.Interfaces { public interface IDeleteProjectFactory : IActionFactory { IDeleteProject Create(); } }
namespace app { /// <summary> /// Creates a binary tree of the given size with arbitrary char data in it. /// </summary> public class TreeBuilder { private int Depth; public TreeBuilder(int depth) { this.Depth = depth; } public TreeItem BuildTree(...
using System; using System.Windows.Forms; using Phenix.Core.Net; namespace Phenix.Services.Host.Core { #region 定义 /// <summary> /// 申明校验系统信息处理函数 /// </summary> /// <param name="enterpriseName">企业名</param> internal delegate bool VerifySystemInfoCallback(string enterpriseName); #endregion /// <summary...
using System.Collections.Generic; namespace AutoCodeBuilder { static class Extensions { public static IReadOnlyList<T> CreateNewWithFirstElement<T>(this IReadOnlyList<T> els, T el) { if (els is null || els.Count == 0) return new[] {el}; var r = new List<T...
using System.Collections; using System.Collections.Generic; using UnityEngine; namespace AlohaCorp.UI { public abstract class UIElementBase : MonoBehaviour { [SerializeField] protected UIElementGroup group; [SerializeField] protected AnimationCurve easeCurve; [Header("Anima...
// 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 Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; namespace FiiiCoin.Utility.Api { public class ApiResponse ...
namespace TelegramBot { public class DelWordCommand : AbstractCommand { public DelWordCommand() { CommandText = "/delword"; CommandDescription = "удалить слово из словаря"; } } }
using System; using System.ComponentModel.DataAnnotations; using com.Sconit.Entity.SYS; using System.Collections.Generic; //TODO: Add other using statements here namespace com.Sconit.Entity.INP { public partial class RejectMaster { #region Non O/R Mapping Properties [CodeDetailDescriptionAttri...
using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Threading.Tasks; using System; public class AdController : MonoBehaviour { public Action ActionTrailReward; public Action ActionContinueReward; public Action ActionCoinRewardx2; public Action NextArea; [Seri...
using Robust.Shared.GameStates; using Robust.Shared.Serialization; namespace Content.Shared.PowerCell; /// <summary> /// This component enables power-cell related interactions (e.g., entity white-lists, cell sizes, examine, rigging). /// The actual power functionality is provided by the server-side BatteryCom...
using System.Text; using iSukces.Code.Interfaces; namespace iSukces.Code.Typescript { public class TsField : TsMethodArgument, ITsClassMember { public TsField() { } public TsField(string name) { Name = name; } public override string ToString...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using iTextSharp.text.pdf; using iTextSharp.text.pdf.parser; using iTextSharp.text.pdf.s...
using System.Collections; using System.Collections.Generic; using UnityEngine; [RequireComponent(typeof(Rigidbody2D))] public class Enemy : MonoBehaviour, IBattable, IHurtable { public static EnemyController enemyController; public int index { get; set; } public void Push (Vector2 force) { enemyController.Push...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel; using PL.Models; using PL.Views; using PL.Commands; using BE; using System.Windows; using System.Windows.Forms; using System.Windows.Controls; using Microsoft.Maps; namespa...
using System; using System.Collections.Generic; using System.Linq; using System.Text; 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.Windows.Navigati...
using Microsoft.AspNetCore.Mvc; using Moq; using NUnit.Framework; using SFA.DAS.CommitmentsV2.Shared.Interfaces; using SFA.DAS.ProviderCommitments.Web.Controllers; using SFA.DAS.ProviderCommitments.Web.Models.Apprentice; using System.Threading.Tasks; using AutoFixture; using SFA.DAS.CommitmentsV2.Api.Client; using SFA...
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 Frm_GestaoUsuarios : Form { string id...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using Kingdee.CAPP.DAL; using Kingdee.CAPP.Model; namespace Kingdee.CAPP.BLL { /// <summary> /// 类型说明:材料定额BLL /// 作 者:jason.tang /// 完成时间:2013-07-08 /// </summary> public class Materia...
using System.Linq; using System.Linq.Expressions; using Baseline; using Marten.Schema; namespace Marten.Linq.Handlers { public class StringStartsWith : MethodCallParser<string> { public StringStartsWith() : base(x => x.StartsWith(null)) { } public override IWhereFragment Parse(...
using DAL; using DAL.Models; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Identity.UI.Services; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using OfficeOpenXml; using OpenIddict.Validation; using QuickApp.Helpers; using QuickApp.ViewMo...
using DesignPatterns.Structural.Composite; using System; using System.Collections.Generic; using System.Text; using Xunit; namespace DesignPatterns.Test.Structural.Composite { public class CompositeTests { [Fact] public void Employee_ShowsReportingTree() { var ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MySql.Data.MySqlClient; using System.Data.SqlClient; namespace KukulcanGame { /// <summary> /// Clase que realiza la conexion con la base de datos y su gestion /// </summary> publ...
using Alabo.App.Share.Rewards.Domain.Services; using Alabo.Test.Base.Attribute; using Alabo.Test.Base.Core; using Alabo.Test.Base.Core.Model; using Xunit; namespace Alabo.Test.Open.Share.Domain.Service { public class IRewardServiceTests : CoreTest { [Theory] [InlineData(2)] [InlineData(...
using System; using System.Collections.Generic; using System.Linq.Expressions; using Ricky.Infrastructure.Core.Configuration; using VnStyle.Services.Data.Domain; namespace VnStyle.Services.Business { public interface ISettingService { void DeleteConfiguration(long configurationId); T GetConfig...
using FluentMigrator; namespace Profiling2.Migrations.Migrations { [Migration(201301251235)] public class EventViolation : Migration { public override void Down() { Delete.Table("PRF_EventViolation"); } public override void Up() { Create.Tab...
using System; using System.Threading.Tasks; using Uintra.Features.Groups.Models; namespace Uintra.Features.Groups.Helpers { public interface IGroupHelper { GroupHeaderViewModel GetHeader(Guid groupId); Task<GroupHeaderViewModel> GetHeaderAsync(Guid groupId); GroupViewModel GetGroupView...
using System; using System.Collections.Generic; using System.Linq; using Tools; namespace _125 { class Program { static void Main(string[] args) { Decorators.Benchmark(Solve, 100000000); } public static long Solve(int limit) { var palindromicSu...
using DomainLib; using System.Collections.Generic; using System.Threading.Tasks; namespace BusinessAndDataLayers { public class DummyPersonAsObjectAsyncEnumerator : IAsyncEnumerator<Person> { private bool _isFirst; public DummyPersonAsObjectAsyncEnumerator(bool returnAPerson) { ...
using System.Collections; using System.Collections.Generic; using UnityEngine; //Uses the characters transform to move the character. namespace NameSpacesTest { public class CharacterController2 : MonoBehaviour { public float moveSpeed; public float rotateSpeed; private Transform tf; ...
namespace Sentry.Tests; public class SentryPropagationContextTests { [Fact] public void CreateFromHeaders_TraceHeaderNullButBaggageExists_CreatesPropagationContextWithoutDynamicSamplingContext() { var baggageHeader = BaggageHeader.Create(new List<KeyValuePair<string, string>> { ...
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; public interface IEventInfo { } public class EventInfo<T> : IEventInfo { public UnityAction<T> actions; public EventInfo( UnityAction<T> action) { actions +=...
using System; using System.Collections.Generic; namespace Piovra; public sealed class EventAggregator { static readonly Lazy<EventAggregator> _sole = new(() => new EventAggregator()); static EventAggregator Sole => _sole.Value; EventAggregator() { } public static TEvent GetEvent<TEvent>() where TEve...
using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Linq; using ReverseFile; namespace FileReverse.Test { [TestClass] public class FileReverseTests { [TestMethod] public void Reverse_Even_Number_Of_Lines() { var inputLines = new string[] { "hello World", "y...
using UnityEngine; using System.Collections; public class FinalScoreController : MonoBehaviour { bool registeredForEvents; void Awake() { } void Start() { RegisterForEvents (); } void OnDestroy() { UnregisterForEvents (); } void RegisterForEvents() { if (registeredForEvents) { return; } ...
using System; using System.Web.Mvc; using DevExpress.Web.Mvc; using DevExpress.XtraPivotGrid; using DevExpress.Utils; using System.Web.UI.WebControls; using System.Collections.Generic; namespace DevExpress.Web.Demos { public partial class PivotGridController: DemoController { public ActionResult Export() ...
using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Text; using System.Windows.Forms; namespace ChessGame.Model { /// <summary> /// Colores posibles que se pueden tomar /// </summary> enum ColoresPosibles { Blanco = 0, Negro = 1 } ...
using System; namespace SingletonDemo { public class Item { public string Name{get;set;} public decimal Price{get;set;} } }
using System; using dotenv.net; using System.Threading.Tasks; namespace myApp { class Program { static void Main(string[] args) { DotEnv.Config(); ExecutionClient execution = new ExecutionClient(); ExecutionStatus result = execution...
using System; using System.Collections.Generic; public class Class1 { Dictionary<string, string> COUN = new Dictionary<string, string> { {"А-H" = "Африка"},{"J-R" = "Азия"},{"S-Z" = "Европа"},{"1-5" = "Северная Америка"},{"6-7" = "Океания"},{"8-9" = "Южная Америка"} }; Dictionary<string, strin...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Weather_forecast.Models; using Weather_forecast.OriginalModels; using Weather_forecast.Web_mapping; using Weather_forecast.Utility; using Weather_forecast.JSONModels.Current_...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GangOfFourDesignPatterns.Behavioral.Strategy { /// <summary> /// Context class that contains a property to hold the reference /// of a Strategy object. /// This property will...
using Fingo.Auth.DbAccess.Repository.Interfaces; using Fingo.Auth.Domain.AuditLogs.Factories.Interfaces; using Fingo.Auth.Domain.AuditLogs.Implementation; using Fingo.Auth.Domain.AuditLogs.Interfaces; namespace Fingo.Auth.Domain.AuditLogs.Factories.Implementation { public class GetAllAuditLogFactory : IGetAllAudi...
using RRExpress.Api.V1.Methods; using RRExpress.AppCommon.Attributes; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace RRExpress.Express.ViewModels { [Regist(InstanceMode.Singleton)] public class MyPointsViewModel : ListBase { public override string Title { ...
using System; namespace Cosmos.Shared { public class SharedSomething { public int GetTheNumber() { return 42; } } }
using EPI.Sorting; using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace EPI.UnitTests.Sorting { [TestClass] public class BubbleSortUnitTest { [TestMethod] public void BubbleSorting() { int[] array = new[] { 23, 14, 15, 7, 99, -2, 4, 42 }; BubbleSort<int>.Sort(array); ...
using System; namespace Skat { public class Afgift { public static int BilAfgift(int pris) //Jeg gør brug af if-statments til udreningen af Bilernesafgifter { double BilAfgift = 0; if (pris <= 0) { throw new ArgumentException("Pr...
using System; using System.IO; using System.Data.SQLite; namespace learningWindowsForms.DAL.Repositories { public class BaseRepository { public static string DbFile { get { return System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocu...
using Mysoft.ESB.Entity; using Mysoft.Map.Extensions.DAL; using Mysoft.Map.Extensions.Web; using Mysoft.Map.MVC; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Xml.Linq; using System.Xml.XPath; using System.Dat...
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 ConexaoDataBase; namespace FormularioPrincipal { public partial class FrmTelaCadUsuario : Form...
using System; using System.Collections.Generic; namespace SMG.Common.Conditions { /// <summary> /// List of identifiers or a wildcard. /// </summary> public class IdList : List<string> { /// <summary> /// If true, this is a wildcard. /// </summary> publ...
namespace MvcApp.Web.Controllers { using BindingModels; using Data; using Data.Common.Repository; using Data.Models; using Security; using Services; using SimpleHttpServer.Models; using SimpleMVC.Attributes.Methods; using SimpleMVC.Controllers; using SimpleMVC.Interfaces; us...
using System; using System.Collections.Generic; using System.Collections; using System.Text; using DBDiff.Schema.Model; namespace DBDiff.Schema.SQLServer2000.Model { public class TableOptions:List<TableOption> { private Hashtable hash = new Hashtable(); private Table parent; public Ta...
using System.Linq; using UnityEditor; using UnityEngine; [CustomEditor(typeof(FruitScript))] public class NewBehaviourScript : Editor { // Use this for initialization void Start() { //EditorUtility.SetDirty(one); } public override void OnInspectorGUI() { base.OnInspectorGUI()...
using System; using System.Collections.Generic; using UnityEngine; public class IParkourPlayer_Xiong : IParkourPlayerController { //角色索引 public enum PlayerIndex { Index_P1 = 0, Index_P2 = 1, } public PlayerIndex playerIndex = PlayerIndex.Index_P1; /// <summary> /// 玩家头顶的排名信息...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking; public class RandomStartPosition : NetworkBehaviour { [SerializeField] private float Height; [SerializeField] private float InnerRadius; [SerializeField] private float OutterRadius; ...
using System.Linq; using FluentAssertions; using Xunit; namespace DataLightning.Core.Tests.Unit; public class SubscriptionManagerTests { [Fact] public void NotifyOneSubscriber() { var subscriptionManager = new SubscriptionManager<string>(); var subscriber = new FakeObjectSubscriber<string...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace DMS.Patient { public partial class DoctorsBooking : System.Web.UI.Page { Transaction tran = new Transaction(); protected void Page_Load(object se...
using Dao; using Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Control { public class FuncionarioCtrl { public Boolean SalvarFuncionarioNoArquivo(Funcionario _funcionario) { try { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Euler_Logic.Problems { public class Problem61 : ProblemBase { private int[] _combos; private HashSet<int> _uniqueCombos; List<Dictionary<int, int>> _polygonals; ...
using AppointmentManagement.Core.DataAccess.EntityFramework; using AppointmentManagement.DataAccess.Abstract; using AppointmentManagement.Entities.Concrete; using System; using System.Collections.Generic; using System.Text; namespace AppointmentManagement.DataAccess.Concrete { public class EfOrderWarehouseDal:EfE...
using Abp.AspNetCore.Mvc.Views; namespace Dg.Fifth.Web.Views { public abstract class FifthRazorPage<TModel> : AbpRazorPage<TModel> { protected FifthRazorPage() { LocalizationSourceName = FifthConsts.LocalizationSourceName; } } }
using Dapper.FluentMap.Dommel.Mapping; using Restaurants.Domain; namespace Restaurants.Data.Mappers { public class OrderMap : DommelEntityMap<Order> { public OrderMap() { ToTable("ORDERS"); Map(x => x.Id).ToColumn("ID").IsKey(); Map(x => x.Email).ToColumn("E...
using System.Collections.Generic; using System.Text.Json; using Asnapper.Hal101.Data; using Asnapper.Hal101.Models; using Asnapper.Hal101.Models.Hypermedia; using Hallo; using Hallo.Serialization; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Mvc.Infrastructure; using Microsoft.AspNetCore.Mvc.Routing...
using EddiDataDefinitions; using System.Collections.Generic; namespace EddiSpanshService { public interface ISpanshService { NavWaypointCollection GetCarrierRoute(string currentSystem, string[] targetSystems, long usedCarrierCapacity, bool calculateTotalFuelRequired = true, string[] refuel...
using UnityEngine; using System.Collections; namespace EventSystem { public class EndMonthEvent : GameEvent { public EndMonthEvent () {} } }
using GalaSoft.MvvmLight; using GalaSoft.MvvmLight.Command; using GalaSoft.MvvmLight.Messaging; using JeopardySimulator.Ui.Commands.CommandResults; using JeopardySimulator.Ui.Messages; namespace JeopardySimulator.Ui.ViewModels { public class MessagePopupViewModel : ViewModelBase { public MessagePopupViewModel() ...
using System; using System.Collections.Generic; using DFC.ServiceTaxonomy.GraphSync.Enums; using DFC.ServiceTaxonomy.GraphSync.Models; namespace DFC.ServiceTaxonomy.GraphSync.Interfaces { public interface IResultSummary { // // Summary: // Gets query that has been executed. ...
using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; using TRACSNarrative.Models; namespace TRACSNarrative.Data { public partial class NarrativeContext : DbContext { public NarrativeContext() { } public NarrativeContext(DbContextOpti...
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using GSVM.Components; using GSVM.Components.Controllers; namespace GSVM.Devices.DisplayAdapters { public class MonochromeDisplayAdapter : DisplayAdapter { private ...
using System; using System.Collections.Generic; using System.Drawing; using Balloon_Cup.Properties; namespace Balloon_Cup { class Tile : Object { /// <summary> /// The two types of terrain /// </summary> public enum TerrainType { Flatland, Mountain } /// <summary> ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MeriMudra.Models.ViewModels { public class BenefitsAndFeature { public int CardId { get; set; } public string HeadingText { get; set; } public List<string> Points { get; set; } } }
using Abp.Authorization; namespace Abp.Zero.EntityFramework.Repositories { public class PermissionSettingRepository : AbpZeroEfRepositoryBase<PermissionSetting, long>, IPermissionSettingRepository { } }
// ArrayQueue.cs using System; namespace Ukonline.Datastructures { /// Array-based implementation of a queue. public class ArrayQueue<E> : Queue<E> { private readonly E[] data; // Elements of this queue private int front, rear; // Index of front and rear of this queue private readonly int capaci...
using UnityAtoms.MonoHooks; namespace UnityAtoms.MonoHooks { /// <summary> /// Action of type `CollisionGameObjectPair`. Inherits from `AtomAction&lt;CollisionGameObjectPair&gt;`. /// </summary> [EditorIcon("atom-icon-purple")] public abstract class CollisionGameObjectPairAction : AtomAction<Collisi...
using System; using Framework.Core.Common; using OpenQA.Selenium; using Tests.Pages.Drupal.Forms; namespace Tests.Pages.Oberon.Contribution { public class OberonContributionForm : FormBase { public OberonContributionForm(Driver driver) : base(driver) { } /// <summary> //...
using System; using System.Collections.Generic; using System.Linq; using System.Web.UI.WebControls; using Sind.BLL; using Sind.Model; using Sind.Web.Publico.Helpers; namespace Sind.Web.Cadastros { public partial class ListaUsuario : System.Web.UI.Page { #region [ PROPRIEDADES ] private IList<...
using gView.GraphicsEngine; using gView.GraphicsEngine.Abstraction; using System; using System.Drawing; using System.IO; namespace gView.Framework.Sys.UI.Extensions { static public class GdiExtensions { static public Color ToGdiColor(this ArgbColor argbColor) { return Color.FromArg...
namespace ElevatorKata { public class ControlPanel { private Floor _floor; public ControlPanel(Floor floor) { _floor = floor; } public void Press(Direction direction) { } } }
using Authorization.Models; using Microsoft.Extensions.Configuration; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Authorization.Repository { public interface IRepository { public string GenerateJSONWebToken(IConfiguration _...
// ReSharper disable once CheckNamespace namespace Microsoft.OpenApi.Models { public static class NameConstants { public const string Pagination = "Pagination"; public const string List = "List"; } }
namespace Mashup.Logic.Providers.Search { public class SearchResultItemMetadata { public string uri { get; set; } public string type { get; set; } } }
using System; using System.Collections.Generic; namespace TripNetCore.test { public partial class Trip { public int TripId { get; set; } public DateTime TripDate { get; set; } public int AirportId { get; set; } public int TransTypeId { get; set; } public string GroupNam...
using System; using System.Collections.Generic; using System.Text; namespace EmberKernel.Services { public interface IContentRoot { string ContentDirectory { get; } } }
using Allyn.Application.Dto.Manage.Basic; using Allyn.Application.Dto.Manage.Front; using Allyn.Application.Front; using Allyn.Infrastructure; using Newtonsoft.Json; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.Mvc; ...
using System; using System.IO; using System.Runtime.InteropServices; using SevenZip.Compression.LZMA; namespace OpenCTM { public class CtmInputStream : BinaryReader { public CtmInputStream (Stream input) : base(input) { } public String readString () { int len = readLittleInt (); if (len > 0) { ...
using Cs_Notas.Dominio.Entities; using Cs_Notas.Dominio.Interfaces.Repositorios; using Cs_Notas.Dominio.Interfaces.Servicos; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cs_Notas.Dominio.Servicos { public class ServicoConfiguracoes: ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Abhs.Attributes { public class CheckException:ApplicationException { /// <summary> /// 直接返回错误页面 /// </summary> /// <param name="message"></param> public CheckExce...
/********************************************************* * Hyukin Kwon * Save The Date * * PlayerMovement * Modified: 25 Jan 2020 - Hyukin * Last Modified: 29 Feb 2020 - Hyukin * * Inherits from Monobehaviour * * new Player behaviour * Stair need to be tagged with "Stair" * ****************************************...
using Alabo.Datas.Stores; using Alabo.Datas.UnitOfWorks; using Alabo.Domains.Dtos; using Alabo.Domains.Entities; using Alabo.Domains.Services.Sql; using Alabo.Validations.Aspects; using System; using System.Linq.Expressions; using System.Threading.Tasks; namespace Alabo.Domains.Services.Update { public abstract ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Entidades.Vistas { public class ConsultaXAgenteDto { public string VIGENCIA { get; set; } public string PERIODO { get; set; } public Nullable<DateTime> VENCIMIENTO { get; set; } publ...
#if UNITY_2019_1_OR_NEWER using UnityEditor; using UnityAtoms.Editor; namespace UnityAtoms.BaseAtoms.Editor { /// <summary> /// Constant property drawer of type `string`. Inherits from `AtomDrawer&lt;StringConstant&gt;`. Only availble in `UNITY_2019_1_OR_NEWER`. /// </summary> [CustomPropertyDrawer(typ...
using HTBServices; using HTBServices.Mail; using System; using System.Collections.Generic; using System.IO; using System.Text; namespace HTBEmailTest { class Program { static void Mainx(string[] args) { Console.ReadLine(); } static void Main(string[] args) ...
using System; using System.Threading; using System.Threading.Tasks; namespace Hz.Infrastructure.MQ { public interface IMQ { /// <summary> /// 消息发送 /// </summary> /// <param name="msg">消息</param> /// <param name="exchangeName">交换机名称</param> /// <param name="type">转发类型,...
using System.Threading.Tasks; using CryptoLab.Infrastructure.Commands; using CryptoLab.Infrastructure.Commands.Transaction; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace CryptoLab.Api.Controllers { public class TransactionsController : BaseApiController { public Tr...
using System; using System.Linq; namespace Max_Sequence_of_Equal_Elements { class Program { static void Main(string[] args) { //First Solution //int maxSeqStartingIndex = 0; //int maxSeqEndingIndex = 0; //for (int i = 0; i < arr.Length; i++) ...
using System; using MassEffect.GameObjects.Enhancements; using MassEffect.GameObjects.Locations; using MassEffect.GameObjects.Projectiles; using MassEffect.Interfaces; namespace MassEffect.GameObjects.Ships { public class Cruiser : Starship { private const int defaultCruiserHealth = 100; priva...
using ServiceQuotes.Domain.Entities; namespace ServiceQuotes.Domain.Repositories { public interface IAddressRepository : IRepository<Address> { } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace Common.Models { public class Kassabuch { public virtual int KassabuchID { get; set; } public virtual DateTime Datum { get; set; } public ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PusherClient { public class PrivateChannel : Channel { public PrivateChannel(string channelName, Pusher pusher) : base(channelName, pusher) { } } }
using Vlc.DotNet.Core.Interops.Signatures; namespace Vlc.DotNet.Core.Interops { public sealed partial class VlcManager { /// <summary> /// Sets some meta-information about the application. /// </summary> /// <seealso cref="SetUserAgent" /> /// <param name="id">Java-sty...