content
stringlengths
23
1.05M
using System; using System.Collections.Generic; using System.Text; using System.IO; namespace ManejoFicheros { class Documento { StreamWriter documento; public Documento(string nombre, string texto) { documento = new StreamWriter(nombre); documento.WriteLine(te...
using DevExpress.ExpressApp; using DevExpress.ExpressApp.Actions; using DevExpress.ExpressApp.DC; using DevExpress.Persistent.Base; using DevExpress.Xpo; using CIIP.Persistent.BaseImpl; using System.Linq; using DevExpress.ExpressApp.Model; using System.IO; using System.Collections.Generic; using Newtonsoft.J...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using OpenORPG.Database.Enums; using Server.Game.Entities; namespace Server.Game.Combat { /// <summary> /// A character stat is a vital part of the makeup of the <see cref="Character"/>. ///...
namespace Facade { public class CloudProvider { private string _url; public CloudConnection Connect(string url) { _url = url; System.Console.WriteLine($"Connecting to Cloud server {url}"); return new CloudConnection(url); } public Blob...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT License. // See the LICENSE file in the project root for more information. #pragma warning disable IDE0079 // Remove unnecessary suppression. #pragma warning disable CA1062 // Omitting null ...
using System.Collections.Generic; using MSFramework.Domain.Event; namespace MSFramework.Domain { public interface IEventSourcingAggregate { long Version { get; } IEnumerable<IAggregateEvent> GetAggregateEvents(); void ClearAggregateEvents(); } }
using MediatR; using WorkTimer.MediatR.Models; using WorkTimer.MediatR.Responses; namespace WorkTimer.MediatR.Requests { public class GetWorkDayDetailsRequest : UserContext, IRequest<GetWorkDayDetailsResponse> { public GetWorkDayDetailsRequest(int workDayId) { WorkDayId = workDayId; } ...
using System; using System.IO; namespace Horizon.XmlRpc.Client { public class XmlRpcRequestEventArgs : EventArgs { private Guid _guid; private long _request; private Stream _requestStream; public XmlRpcRequestEventArgs(Guid guid, long request, Stream requestStream) ...
using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; namespace TTController.Plugin.ScheduleTrigger { public class ScheduleConverter : JsonConverter<Schedule> { private readonly string Separator = " -> "; private readonly string[] Formats = new stri...
using System.IO; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace BinarySerialization.Test.Misc { [TestClass] public class IOExceptionTest { [TestMethod] public void ShouldThrowIOExceptionNotInvalidOperationExceptionTest() { var stream = new UnreadableStream...
namespace Ignore { using System; using System.Collections.Generic; using System.Text.RegularExpressions; /// <summary> /// A holder for a regex and replacer function. /// The function is invoked if the input matches the regex. /// </summary> public class Replacer { private r...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Turret : MonoBehaviour { public float duration; Collider[] detections = null; [SerializeField] float maxDistance; [SerializeField] LayerMask layer; public Transform firePoint; public float caden...
using LagoVista.Uas.Core.Models; using System; using System.Collections.Generic; using System.Text; namespace LagoVista.Uas.Core { public interface IUasMessageAdapter { void UpdateUas(IUas uas, UasMessage message); } }
using Loris.Common.Domain.Interfaces; using System; using System.Linq; using System.Linq.Expressions; namespace Loris.Common.EF.Repository { public interface IRepository<TEntityId> : IDisposable where TEntityId : class, IEntityIdBase { TEntityId Get(params object[] Keys); TEntityId Get(Expres...
using UnityEngine; using UnityEngine.Events; using UnityEngine.UI; namespace Luminosity.Console.UI { public class MessageFilter : MonoBehaviour { [SerializeField] private Toggle m_toggle; [SerializeField] private Text m_messageCountText; [SerializeField] private LogLevel m_logLevel; [SerializeField] ...
using System; using System.ComponentModel; using System.Drawing; using DevComponents.DotNetBar.SuperGrid; using PostSharp.Patterns.Contracts; namespace ThreatsManager.Extensions.Panels { public class GridCellSuperTooltipProvider : Component, DevComponents.DotNetBar.ISuperTooltipInfoProvider { private ...
using System; namespace argumentos { class tratarArgumentos { private string usuario; private string password; tratarArgumentos (string[] args) { if (args[0] == "") { Console.WriteLine("É necessário fornecer argumentos de login"); } else { for (int i = 0; i < args.Leng...
using System.ComponentModel.DataAnnotations; using McMaster.Extensions.CommandLineUtils; using McMaster.Extensions.CommandLineUtils.Validation; using Solitons.Samples.Database.Models; namespace Solitons.Samples.Database.Validators { public sealed class SuperuserSettingsValidator : IOptionValidator { p...
using System; namespace Tmds.Linux { public unsafe struct iovec { public void* iov_base { get; set; } public size_t iov_len { get; set; } } }
using System.Collections.Generic; using System.Linq; using Vanjaro.Core.Data.Entities; namespace Vanjaro.Core { public static partial class Factories { public class BlockFactory { internal static void AddUpdate(CustomBlock CustomBlock) { if (string.IsNul...
namespace FluentTc.Locators { public interface IBranchHavingBuilderFactory { BranchHavingBuilder CreateBranchHavingBuilder(); } public class BranchHavingBuilderFactory : IBranchHavingBuilderFactory { public BranchHavingBuilder CreateBranchHavingBuilder() { return...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Tso : ScriptableObject { public int[] a; public int b; public Tsoo sso; }
#if UNITY_ANDROID && USE_GETSOCIAL_UI using System; using System.Diagnostics.CodeAnalysis; using GetSocialSdk.Core; namespace GetSocialSdk.Ui { [SuppressMessage("ReSharper", "UnusedMember.Local")] public class ViewStateListener : JavaInterfaceProxy { private Action _onOpen, _onClose; publ...
using System.Collections; using System.Collections.Generic; using UnityEngine; using TheSpace; public class StarInformation : MonoBehaviour { public List<GameObject> _stageLightStars; public List<GameObject> _stageHeavyStars; private int _lastStage; private GameObject _activeStar; [SerializeField] ...
using System; using System.Configuration; namespace ConsoleStock { public class ConfigurationHelper { public static string GetURLString() { return ConfigurationManager.AppSettings["StockUrl"].ToString(); } } }
using AutoWrapper.Base; namespace AutoWrapper { public class AutoWrapperOptions :OptionBase { public bool UseCustomSchema { get; set; } = false; } public class AutoWrapperOptions<T> :OptionBase { } }
using Prism.Commands; using Prism.Mvvm; using RecordLibrary.Models; using RecordLibrary.Views; using System.Windows.Input; namespace RecordLibrary.ViewModels { /// <summary> /// Interaction logic for the new record form /// </summary> public class AddRecordFormViewModel : BindableBase { pr...
using System; using System.Collections.Generic; using System.Threading.Tasks; using EPlast.BLL.DTO.City; using EPlast.BLL.DTO.UserProfiles; using EPlast.BLL.Interfaces.UserProfiles; using EPlast.BLL.Services.Interfaces; using EPlast.DataAccess.Entities; using EPlast.DataAccess.Entities.UserEntities; using EPlast.Resou...
namespace Headless { using System; using System.Collections.Generic; using System.Text.RegularExpressions; using Headless.Properties; /// <summary> /// The <see cref="ComponentsLocationValidator" /> /// class uses <see cref="Uri.GetComponents" /> to validate <see cref="Uri" /> loca...
#nullable enable namespace Snittlistan.Web.Models { public class InviteUserEmail : EmailBase { public InviteUserEmail(string to, string subject, string activationUri) : base("InviteUser", to, subject) { ActivationUri = activationUri; } public string Act...
/// <summary> /// 作者:刘泽华 /// 时间:2018年5月29日11点29分 /// </summary> namespace KilyCore.Extension.ApplicationService.IocManager { public interface IAutoFacManager { void CompleteBuiler(); T Resolve<T>(); } }
using System; namespace NetModular.Lib.Data.Abstractions.Attributes { /// <summary> /// 表名称,指定实体类在数据库中对应的表名称 /// </summary> [AttributeUsage(AttributeTargets.Class, Inherited = false)] public class TableAttribute : Attribute { /// <summary> /// 表名称 /// </summary> ...
// Loosely coupled MVC solution structure (https://github.com/raste/LooselyCoupledStructure) // Copyright (c) 2015 Georgi Kolev. // Licensed under Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0). using System.Collections.Generic; using System.Linq; using BL.Entities; using BL.Services.Acc...
using Unity.VisualScripting; using UnityEngine; namespace DNode { public class DTexLevels : DTexUnaryPreserveAlphaBlitUnit { private int _Blacks = Shader.PropertyToID("_Blacks"); private int _Shadows = Shader.PropertyToID("_Shadows"); private int _Mids = Shader.PropertyToID("_Mids"); private...
using System; using Microsoft.Azure.ServiceBus; namespace SqlTransactionalOutbox.AzureServiceBus.Receiving { public class AzureServiceBusReceivingOptions { /// <summary> /// /// </summary> public bool FifoEnforcedReceivingEnabled { get; set; } = false; public TimeSpan...
using System; using System.Collections.ObjectModel; using System.Collections.Generic; using System.Linq; namespace Umbraco.Core.Models { /// <summary> /// A macro's property collection /// </summary> public class MacroPropertyCollection : ObservableDictionary<string, IMacroProperty> { ...
namespace NWrath.Logging { public interface IRollingFileAction { void Execute(RollingFileContext ctx); } }
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class Test : MonoBehaviour { // Start is called before the first frame update void Start() { NetManager.AddEventListener(NetManager.NetEvent.ConnectSucc, OnConnectSucc); NetManager.AddEventL...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using Docker.DotNet; using Microsoft.Azure.Management.ContainerInstance.Fluent; using Microsoft.Azure.Management.ContainerInstance.Fluent.Models; using Microsoft...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Input; namespace KeyStroker.Logic.Hotkeys { public class Hotkey { public Hotkey(Key key, ModifierKeys modifiers) { _key = key; _modif...
/* Copyright © Bryan Apellanes 2015 */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Common; using Bam.Net.Data; using System.Data; using Bam.Net.Configuration; namespace Bam.Net.Javascript { [Proxy("sql")] public abstract par...
using System; using System.Collections.Generic; using Fulcrum.Runtime; using UnitTests.Queries.Location; using UnitTests.Queries.Location.Additional; using Xunit; namespace UnitTests.Queries { public class QueryLocatorTests { [Fact] public void Find_query_in_namespace() { var queryType = typeof(TestQuery);...
using System; using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Security.Claims; using System.Threading.Tasks; namespace OAHub.Passport.Services { public interface IJwtTokenService { string GenerateToken(string appid, string appsecret, string forU...
using System.Text.Json.Serialization; namespace ldam.co.za.lib.Lightroom; [JsonSerializable(typeof(AlbumAssetResponse))] [JsonSerializable(typeof(AlbumsResponse))] [JsonSerializable(typeof(AssetResponse))] [JsonSerializable(typeof(CatalogResponse))] [JsonSourceGenerationOptions( PropertyNamingPolicy = JsonKnownNa...
// <copyright file="ServiceCollectionAppMetricsHealthCheckPublishingExtensions.cs" company="App Metrics Contributors"> // Copyright (c) App Metrics Contributors. All rights reserved. // </copyright> using System; using App.Metrics.Extensions.Collectors; using App.Metrics.Extensions.Collectors.HostedServices; // ReSh...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace MizeUP.Models { public class LevelModel { [Key] public virtual int Id { get; set; } public virtual string Name { get; set; } public virt...
using Stencil.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Stencil.Primary.Business.Direct { public partial interface IProductBusiness { IEnumerable<Product> GetAffectedProductsByTicketID(Guid ticket_id); } }
//----------------------------------------------------------------------- // <copyright file="jet_recordlist.cs" company="Microsoft Corporation"> // Copyright (c) Microsoft Corporation. // </copyright> //----------------------------------------------------------------------- namespace Microsoft.Isam.Esent.I...
@{ var cdnLocation = "https://dev-cdn.nationalcareersservice.org.uk/nationalcareers_toolkit"; var queryStringVersion = @DateTime.Today.ToString("yyyy-mm-dd"); } <link href="@cdnLocation/css/all.min.css?@queryStringVersion" rel="stylesheet" type="text/css" />
using MediatR; using Nut.MediatR.ServiceLike; namespace ServiceLikeSample.Sample.Basic; [AsService("/basic")] public class BasicRequest : IRequest<BasicResult> { public string Id { get; set; } }
using System.ComponentModel; namespace Eklee.Quiz.Api.Models { public class Status { [Description("Message")] public string Message { get; set; } } }
using Example.Animals; using NUnit.Framework; namespace Example.Tests.NUnit2 { [TestFixture] [Category("TraitOnClass")] [Property("RefSpec","ClassValue")] public sealed class AnimalTests { [Test] [Category("TraitOnMethod")] public void The_Cat_Should_Meow() { // ...
// ParameterData using System; using UnityEngine; [Serializable] public class ParameterData { [SerializeField] public float _value; [SerializeField] public int _parameter; [SerializeField] public int _index = -1; }
using DTD.Sort.Net.Enums; using DTD.Sort.Net.Interfaces; using System; namespace DTD.Sort.Net.Algorithms { internal class MergeSort<T> : ISort<T> where T : IComparable<T> { public SortType Type => SortType.Merge; public T[] Sort(T[] input, SortOrder sortOrder = SortOrder.Default) { ...
using System; using System.Collections.Generic; using System.Text; namespace SwmSuite.Data.Common { /// <summary> /// enumerator defining the status for an overtime entry. /// </summary> public enum OvertimeStatus { /// <summary> /// Overtime entry is pending. /// </summary> Pending, /// <summary> ...
using System; using Microsoft.EntityFrameworkCore.Migrations; namespace Ebd.Infra.Data.Migrations { public partial class Initial : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Bairro", ...
using System; namespace EF.Essentials.Repository { public class EntityHasNoSlugException : Exception { public EntityHasNoSlugException(Type type) : base($"{type.FullName} does not implements IHasSlug") { } } }
using System; namespace ScalableTeaching.DTO { public class UserDTO { public String Username { get; set; } public String Mail { get; set; } public String Sn { get; set; } public String Gn { get; set; } public String Cn { get; set; } public String AccountType { ge...
#region File Description //----------------------------------------------------------------------------- // FixedCombat.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- #endr...
using DGP.Genshin.MiHoYoAPI.GameRole; using System; namespace DGP.Genshin.DataModel.Cookie { public class CookieUserGameRole : IEquatable<CookieUserGameRole> { public CookieUserGameRole(string cookie, UserGameRole userGameRole) { Cookie = cookie; UserGameRole = userGame...
using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using TMPro; [RequireComponent(typeof(TrackingPresenter))] public class UIEvent : MonoBehaviour { [SerializeField] SendTracker sendTracker = null; [SerializeField] TMP_InputField inputIP = null; [SerializeF...
using Bhbk.Lib.Identity.Grants; using Bhbk.Lib.Identity.Models.Alert; using Bhbk.Lib.Identity.Services; using System; using System.Threading.Tasks; namespace Bhbk.Lib.Identity.Services { public interface IAlertService { AlertServiceRepository Endpoints { get; } IOAuth2JwtGrant Grant { get; set...
using Microsoft.EntityFrameworkCore; using TvMaze.Core.Constants; using TvMaze.Core.Entity; namespace TvMaze.Infrastructure.Data.DbMapping { public static class CastMap { public static ModelBuilder MapCasts(this ModelBuilder modelBuilder) { var entity = modelBuilder.Entity<Cast>();...
@page @model MyRolesDataModel @{ ViewData["Title"] = "My Roles & Permissions"; ViewData["ActivePage"] = ManageNavPages.MyRoles; } <h4>@ViewData["Title"]</h4> <div class="row"> <div class="col-md-6"> <div class="card text-center"> <div class="card-body"> <p class="card-text"> @if (Model...
using UnityEngine; using UnityEditor; namespace SOA { [CustomEditor(typeof(Vector3EventAsset))] public class Vector3EventAssetEditor : EventAssetEditor<Vector3> { } }
using System; using Il2CppDummyDll; // Token: 0x02000441 RID: 1089 [Token(Token = "0x2000441")] public enum RoleTeamTypes { // Token: 0x04001742 RID: 5954 [Token(Token = "0x4001742")] Crewmate, // Token: 0x04001743 RID: 5955 [Token(Token = "0x4001743")] Impostor }
// Copyright 2017-2020 Elringus (Artyom Sovetnikov). All Rights Reserved. using System; using UnityEngine; using UnityEngine.Events; namespace Naninovel { /// <summary> /// Hosts events routed by <see cref="GenericActor{TBehaviour}"/>. /// </summary> public class CharacterActorBehaviour : ...
#if DEBUG using FaceOff.Shared; using Foundation; using Newtonsoft.Json; namespace FaceOff.iOS { public partial class AppDelegate { public AppDelegate() => Xamarin.Calabash.Start(); [Export(BackdoorMethodConstants.GetPicturePageTitle + ":")] public NSString GetPicturePageTitle(NSStri...
//================================================================================================= // Copyright 2013-2017 Dirk Lemstra <https://magick.codeplex.com/> // // Licensed under the ImageMagick License (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy ...
using System; using System.Collections.Generic; namespace SnapMD.VirtualCare.ApiModels.Scheduling.Coverage { /// <summary> /// Availability blocks coverage time frame with user ids. /// </summary> public class CoverageTimeFrame { /// <summary> /// Time from. /// </summary> ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Simplic.Cloud.API.DataPort { public class TransformationResultQueueItemResponse { public Guid TransformationQueueId { get; set; } public Guid OrganizationId ...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using LeakyBucket.Owin.Identifiers; namespace LeakyBucket.Owin.Store { public class DefaultRequestStore : IRequestStore { private readonly int _maxNumberOfRequests; private readonly object _syncObject = new ob...
using System.IO; using System.Reflection; using LVK.Core; namespace LVK.Configuration.StandardConfigurators { internal class EnvironmentVariablesConfigurator : IConfigurationConfigurator { public void Configure(IConfigurationBuilder configurationBuilder) { Assembly assembly = Asse...
using Autofac; using ModernSlavery.Core.Interfaces; using ModernSlavery.Core.SharedKernel; using Moq; namespace ModernSlavery.Tests.Common.TestHelpers { public static class SetupHelpers { //TODO: Possible seperate this method for WebUI and Webjobs? public static void SetupMockLogRecordGlobals(...
//Generated by LateBindingApi.CodeGenerator using LateBindingApi.Core; namespace LateBindingApi.Excel.Enums { [SupportByLibrary("XL10","XL11","XL12","XL14","XL9")] public enum XlConsolidationFunction { [SupportByLibrary("XL10","XL11","XL12","XL14","XL9")] xlAverage = -4106, [SupportByLibrary("XL10","XL11","XL...
namespace SixtenLabs.SpawnOfVulkan { public enum Format : long { FormatUndefined = 0, FormatR4g4UnormPack8 = 1, FormatR4g4b4a4UnormPack16 = 2, FormatB4g4r4a4UnormPack16 = 3, FormatR5g6b5UnormPack16 = 4, FormatB5g6r5UnormPack16 = 5, FormatR5g5b5a1UnormPack...
namespace WithinUsingsFolder_NoUsings { internal class WithinUsingsFolder_NoUsingsClass { void FooBar() { System.Console.WriteLine("hey"); } } }
using Microsoft.EntityFrameworkCore.Migrations; namespace PROG2230_Byounguk_Min.Migrations { public partial class Initial : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "TransactionRecords", ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class CameraFollow : MonoBehaviour { [SerializeField] private Transform target; private float smoothSpeed = 0.2f; [SerializeField] private Vector3 offset = new Vector3(0, 0, -1); private bool follow = false; publi...
using System.Collections.Generic; namespace AsmResolver.PE.Imports { /// <summary> /// Represents a single module that was imported into a portable executable as part of the imports data directory. /// Each instance represents one entry in the imports directory. /// </summary> public interface IImp...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Runtime.CompilerServices; namespace Toast { public abstract class Component { public Entity Entity { get; set; } } public class TagComponent : Component { ...
/* * Copyright(c) Trickyrat All Rights Reserved. * Licensed under the MIT LICENSE. */ using System; namespace Start_App.Application.Common.Interfaces { public interface IDateTime { DateTime Now { get; } } }
using Group3.Semester3.DesktopClient.Services; using System; using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using System.Text; namespace Group3.Semester3.DesktopClient.Model { public class RegisterWindowParams { public ApiService ApiService { get;...
/** */ using System; using System.Collections.Generic; using System.IO; namespace AIngle.ipc { public class LocalTransceiver : Transceiver { private readonly Responder responder; public LocalTransceiver(Responder responder) { if (responder == null) throw new ArgumentNull...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class SceneChangeManager : Singleton<SceneChangeManager> { [SerializeField] GameObject loadingPanel; [SerializeField] Image loadingBar; private void Start() {...
using System.Threading.Tasks; using Westmoor.DowntimePlanner.Requests; namespace Westmoor.DowntimePlanner.Repositories { public interface IApiKeyWriteRepository { Task CreateAsync(CreateApiKeyRequest request); Task UpdateAsync(string key, UpdateApiKeyRequest request); Task DeleteAsync(s...
namespace Windows.UI.Xaml.Controls; public interface ICommandBarElement { bool IsCompact { get; set; } }
using System; using System.Collections.Generic; using System.Linq; using PA.Business.Interfaces; using PA.Core.DataModel.Entities; using PA.Core.Infrastructure.ResultObjects; using PA.Data.Interfaces; namespace PA.Business.Logic { public class ProductService : IProductService { private readonly IProdu...
using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using Exceptional.Analyzer.Helpers; using Exceptional.Analyzer.Models; using Exceptional.Analyzer.Models.Docs; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; na...
using System.Collections.Generic; using EasyAbp.Abp.SettingUi.Dto; using Volo.Abp.Application; using Volo.Abp.Modularity; using Volo.Abp.VirtualFileSystem; using Volo.Abp.Authorization; using Volo.Abp.Json.SystemTextJson; namespace EasyAbp.Abp.SettingUi { [DependsOn( typeof(AbpSettingUiDomainSharedModule)...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.SceneManagement; public class OpeningTransition : MonoBehaviour { public string nextLevel; // Use this for initialization void Start () { Color fade_color = FadeManager.Ins...
using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu] [System.Serializable] public class TimelineElements : ScriptableObject { [SerializeField] public List<TimelineElement> elements =new List<TimelineElement>(); public void AddElement(TimelineElement element){ ...
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; using System.Web.Caching; namespace Jusfr.Caching { public class HttpRuntimeCacheProvider : CacheProvider, IHttpRunti...
using System.Collections.Generic; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace Collectively.Api.Tests.EndToEnd.Framework { public interface IHttpClient { Task<IEnumerable<T>> GetCollectionAsync<T>(string endpoint); Task<T> GetAsync<T>(string endpoint); ...
using EFDM.Abstractions.Audit; using System.Collections.Generic; namespace EFDM.Core.Audit { public class AuditEvent : IAuditEvent { public string ContextId { get; set; } public List<IEventEntry> Entries { get; set; } public int Result { get; set; } public bool Success { ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace p1_2.Models { public class CheckoutView { public int CheckoutViewId { get; set; } public CustomerAddress CustomerAddress { get; set; } public List<ShoppingCart> ShoppingCarts { get; set; } } }
using System; using Utility.Storage.StorageHelper.Common; namespace Utility.Storage.StorageHelper { static class StorageParametersExtension { public static DynamicParameters ToDapperParameters(this Func<Parameters, Parameters> getter) { if (getter == null) return null; ...
using GeneralStockMarket.Entities.Concrete; using Microsoft.EntityFrameworkCore; namespace GeneralStockMarket.Dal.Concrete.EntityFrameworkCore.Contexts { public class GeneralStockMarketDbContext : DbContext { public GeneralStockMarketDbContext(DbContextOptions<GeneralStockMarketDbContext> options) : ...
using GestaoFluxoFinanceiro.Negocio.Models; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace GestaoFluxoFinanceiro.Negocio.Interfaces { public interface IMovimentoProfissionalRepository : IRepository<MovimentoProfissional> { Task<MovimentoProfi...
using FSNEP.Core.Domain; namespace FSNEP.BLL.Interfaces { public interface ITimeRecordBLL : IRecordBLL<TimeRecord> { } }