text
stringlengths
1
932k
namespace YoghurtBank.Data.Model { public abstract class User { public int Id { get; init; } [Required] [StringLength(50)] public string UserName { get; init; } [EmailAddress] [DataType(DataType.EmailAddress)] [Required] public string Email { get...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AsyncInn.Models; namespace AsyncInn.Data.Interfaces { public interface IHotelRepository { Task<Hotel> CreateHotel(Hotel hotel); Task<Hotel> GetHotelById(long id); Task<bool...
// Copyright 2022 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated w...
using NPoco; using System.Collections.Generic; using System.Linq; using Umbraco.Core.Persistence.DatabaseModelDefinitions; namespace Umbraco.Core.Persistence.SqlSyntax { internal static class SqlSyntaxProviderExtensions { public static IEnumerable<DbIndexDefinition> GetDefinedIndexesDefinitions(this I...
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using EventStore.Common.Utils; using EventStore.Core.Data; using EventStore.Core.Messages; using EventStore.Core.Messaging; using EventStore.Core.Tests; using EventStore.Projections.Core.Messages; using EventStore.Projections.Core.Ser...
//------------------------------------------------------------------------------ // <copyright file="CodeFieldReferenceExpression.cs" company="Microsoft"> // // Copyright (c) 2006 Microsoft Corporation. All rights reserved. // // The use and distribution terms for this software are contained in the...
using System; using System.Collections.Generic; namespace AmortizorModel.Models { public class MonthlyDecisionsModel { public DateTime Month { get; set; } public IList<DebtDecisionModel> Decisions { get; set; } } public class DebtDecisionModel { public string LoanName { ge...
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using System; using System.Collections.Generic; using System.Linq; using System.Ne...
using System; using System.ComponentModel; using System.Linq; using Nuke.Common.Tooling; namespace Nuke.Components { [TypeConverter(typeof(TypeConverter<Configuration>))] public class Configuration : Enumeration { public static Configuration Debug = new Configuration { Value = nameof(Debug) }; ...
using System; using Avalonia.Controls; namespace Microsoft.Maui { public static class WindowExtensions { public static void UpdateTitle(this Window nativeWindow, IWindow window) => nativeWindow.Title = window.Title; public static IWindow? GetWindow(this Window nativeWindow) { foreach(var window in Maui...
// This source is subject to the the MIT License (MIT) // All rights reserved. namespace Lifti.Querying { using System; using System.Collections.Generic; using System.Linq; /// <summary> /// Information about items returned from a query. /// </summary> /// <typeparam name="TItem">The type...
// =========================================================== // Copyright (c) 2014-2015, Enrico Da Ros/kendar.org // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerBehavior : MonoBehaviour { public float spd; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { Vector3...
using System; using System.Reflection; namespace _2._72_Reflection_GetValueOfField { class Program { static void Main(string[] args) { var rect = new Rectangle(); var nonPublicFields = rect.GetType().GetFields(BindingFlags.Instance | BindingFlags.NonPublic); ...
using System.Threading.Tasks; using Azure.Core.TestFramework; using Azure.ResourceManager.Resources; using NUnit.Framework; namespace Azure.ResourceManager.Tests { public class FeatureCollectionTests : ResourceManagerTestBase { public FeatureCollectionTests(bool isAsync) : base(isAsync)//, ...
namespace Mindstorms.Core.Music._442 { public class E1 : Note { public E1(NoteType noteType = NoteType.Quarter) : base(noteType) { Name = "E1"; Frequency = 41.39; WaveLength = 833.52; } } }
using ERPCore.Enterprise.Models.ChartOfAccount; using ERPCore.Enterprise.Models.Taxes; using ERPCore.Enterprise.Models.Transactions.Commercials; using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; ...
#pragma checksum "C:\Users\ilkeryolundagerek\source\repos\E-Ticaret\UI\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "59507adaa8b192ecf0368bd4e9ee65645aa2eece" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(As...
using Example.API.DataAccess.Context; using Example.API.DataAccess.Repository.Abstract; using Example.API.DataAccess.Repository.Concrete; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Depe...
using System; using System.Text; using System.Collections.Generic; using NUnit.Framework; using System.IO; namespace mantis_tests { [TestFixture] public class AccountCreationsTests : TestBase { [SetUp] public void SetupConfig() { app.Ftp.BackupFile("/config_inc.php"); ...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; using System.Reflection.Metadata; using Internal.NativeFormat; using Debug = System.Diagnostics.Debug; using GenericParameterAttribut...
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System; using System.IO; namespace ArdalisRating { /// <summary> /// The RatingEngine reads the policy application details from a file and produces a numeric /// rating value based on the details. /// </summary> public class RatingEng...
using System.Linq; using System.Reflection; namespace Albedo.UnitTests { internal class TypeWithParameters { public static ParameterInfo Parameter { get { return typeof(TypeWithParameters) .GetMethod("TheMethod") .G...
namespace Macabresoft.Macabre2D.Framework; using System.Runtime.Serialization; using System.Text; using Microsoft.Xna.Framework.Content.Pipeline.Processors; using Microsoft.Xna.Framework.Graphics; /// <summary> /// The font style. /// </summary> public enum FontStyle { Regular, Bold, Italic } /// <summar...
using UnityEngine; using System.Collections; using System.Collections.Generic; using System.Linq; namespace WindowCapture { public class Manager : MonoBehaviour { private static Manager instance_; public static Manager instance { get { return CreateInstance(); } } private List<Window> windows_; publ...
using Newtonsoft.Json; namespace ScooterApp.Domain.Base { public interface IDocument { [JsonRequired, JsonProperty("id")] string Id { get; set; } [JsonRequired, JsonProperty("documentType")] string DocumentType { get; set; } } }
namespace ShoppingCartStore.Common.BindingModels.CreditCard { using System; using System.ComponentModel.DataAnnotations; public class CreateCreditCardBindingModel { [Required] [StringLength(16, MinimumLength = 12)] [Display(Name = "Card Number")] public string Number { ...
using Dapper; using System; using System.IO; using System.Text; using System.Xml.Serialization; namespace Zoey.Dapper { [Serializable] internal class ZoeyDataAccessException : Exception { public ZoeyDataAccessException(Exception innerException, string connectionString, string sqlText, object param...
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; names...
using System; using Microsoft.EntityFrameworkCore.Migrations; namespace UnlockMe.Data.Migrations { public partial class AddComments : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<string>( name: "ProfileImageP...
// Copyright (c) 2012-2020 fo-dicom contributors. // Licensed under the Microsoft Public License (MS-PL). using System; using Xunit; namespace FellowOakDicom.Tests { [Collection("General")] public class DicomDatasetGetValuesTest { #region Unit tests [Fact] public void Get_ValueCo...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Act...
using Syncfusion.EJ.ReportViewer; using Syncfusion.Reports.EJ; // DataSourceCredentials using System.Collections.Generic; using System.Web.Http; namespace EasyLOB.Mvc { public class RDLApiController : ApiController, IReportController { /// <summary> /// Action (HttpGet) method for getting reso...
using Kasp.CloudMessage.FireBase.Tests.Data; using Kasp.Core.Extensions; using Kasp.Test.EF.Extensions; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Depend...
namespace Uspeak.Data.Models.Study { public enum StudentPresence { IsAbsent = 0, IsPresence = 1, FrenchLeave = 2, Carryover = 3 } }
/* This code is derived from jgit (http://eclipse.org/jgit). Copyright owners are documented in jgit's IP log. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, is reproduced below, and is available at http://www...
namespace Devshed.Csv { using System.IO; /// <summary>Provided CsvDefinition extension methods.</summary> public static class CsvDefinitionExtensions { /// <summary> /// Writes the CSV document into a new stream and returns it. /// </summary> /// <typeparam name="TRow"...
// <auto-generated /> using Jeremy.IdentityCenter.Database.DbContexts; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; nam...
using Handelabra.Sentinels.Engine.Controller; using Handelabra.Sentinels.Engine.Model; using System; using System.Collections; using System.Collections.Generic; namespace Cauldron.Northspar { public class LostInTheSnowCardController : NorthsparCardController { public LostInTheSnowCardController(Card ...
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
/* _BEGIN_TEMPLATE_ { "id": "FB_ELO002_copy", "name": [ "强化斗技之魂", "Greater Competitive Spirits" ], "text": [ "获得比对手有利的作战条件。", "Gain an advantage against your opponent." ], "cardClass": "NEUTRAL", "type": "ENCHANTMENT", "cost": null, "rarity": null, "set": "TB", "collectible": null,...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #region Using directives using System; using Microsoft.Build.Shared; using Xunit; #endregion namespace Microsoft.Build.UnitTests { sealed public class Escaping...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text.RegularExpressions; using System.Threading.Tasks; using CommonMark; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.Extensions.Logging; using Ocuda.Promenade.Contro...
namespace Plus.Communication.Packets.Incoming.Rooms.Connection { using HabboHotel.GameClients; public class OpenFlatConnectionEvent : IPacketEvent { public void Parse(GameClient session, ClientPacket packet) { if (session == null || session.GetHabbo() == null) { ...
using System; using System.Collections.Generic; using System.Linq; namespace ListOfPredicates { class Program { static void Main(string[] args) { var end = int.Parse(Console.ReadLine()); var arr = Console.ReadLine() .Split() .Select(i...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("LegendaryFarming")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [a...
using System.IO; using CP77.CR2W.Reflection; using FastMember; using static CP77.CR2W.Types.Enums; namespace CP77.CR2W.Types { [REDMeta] public class audioCookedMetadataResource : CResource { [Ordinal(0)] [RED("entries")] public CArray<CHandle<audioAudioMetadata>> Entries { get; set; } public audioCookedMetad...
namespace CloudPhoto.Data { using System.Linq; using CloudPhoto.Data.Common.Models; using Microsoft.EntityFrameworkCore; internal static class EntityIndexesConfiguration { public static void Configure(ModelBuilder modelBuilder) { // IDeletableEntity.IsDeleted index ...
using System; using System.Collections.Generic; using System.Threading; using System.Reflection; using System.Windows.Forms; using System.Collections; namespace io { public class IoCLI { public static IoState state = new IoState(); private static IEnumerator Recurse2(IoCoroutine f) { ...
using UnityEngine; namespace Adrenak.Tork { public class WheelRenderer : MonoBehaviour { public Wheel wheel; public float offset; public float angle; private void OnValidate() { SyncPosition(); } public void Update() { SyncPosition(); SyncRotation(); } void SyncPosition() { if (wheel...
using System.Text.Json.Serialization; namespace Polygon.Models { public class LastTrade { /// <summary> /// Price of the trade /// </summary> /// <value>Price of the trade</value> [JsonPropertyName("price")] public double? Price { get; set; } /// <summary> /// Size of this trade /// </summary> ...
using ShopGenerator.Base; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShopGenerator { public interface ILimitationNumber { } public class LimitationNumber : ILimitationNumber { private int _minNumber; private int _maxNumber; ...
using FS.Abp.JobsManagement.Dtos; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace FS.Abp.JobsManagement { public interface IJobAppService : IApplicationService { Task PostStartJobAsync(); Task<List<JobHistoryDto>> GetJobHistoryAsy...
// ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // ---------------------------------------------------------------------------- using System.Linq; using Microsoft.WindowsAzure.MobileServices.TestFramework; namespace Microso...
using System.IO; using System.Threading.Tasks; namespace CLUNL.DirectedIO { public class MemoryWR : IBaseWR { MemoryStream MemoryStream; StreamReader StreamReader; StreamWriter StreamWriter; public MemoryWR(byte[] BaseData) { MemoryStream = new MemoryStream(...
// *** WARNING: this file was generated by the Pulumi SDK Generator. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.Azur...
using System; using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Events { /// <summary> /// <para>表示 EVENT.user_del_card 事件的数据。</para> /// <para>REF: https://developers.weixin.qq.com/doc/offiaccount/Cards_and_Offer/Coupons_Vouchers_and_Cards_Event_Push_Messages.html#4 </para> ...
using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "WorldAttributes", menuName = "TerrainGenerator/World Attributes")] public class WorldAttributes : ScriptableObject { [SerializeField] private int chunkWidth = 0; [SerializeField] private int chunkHeight =...
#region license and copyright /* * The MIT License, Copyright (c) 2011-2019 Marcel Schneider * for details see License.txt */ #endregion namespace AeonFlux.Ast { using System.Text; internal class PostfixExpression : IExpression { public IExpression Left { get; private set; } public Par...
/**************************************************************************** * Copyright (c) 2017 liangxie * * http://liangxiegame.com * https://github.com/liangxiegame/QFramework * https://github.com/liangxiegame/QSingleton * https://github.com/liangxiegame/QChain * * Permission is hereby granted, free of c...
namespace Lexs4SearchRetrieveWebService { /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("WscfGen", "1.0.0.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Ser...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // <auto-generated/> #nullable disable using System.Collections.Generic; using System.Text.Json; using Azure.Core; using Azure.ResourceManager.Models; namespace Azure.ResourceManager.CosmosDB.Models { public partial ...
 @{ ViewData["Title"] = "Acesso Negado"; } <div class="text-center"> <i style="color:#000000" class="fas fa-user-shield fa-3x"></i> <h1>Acesso Negado</h1> <p>Atenção! Você não possui autorização para acessar essa página.</p> </div>
using System; using System.Collections.Generic; using System.Threading.Tasks; using VkNet.Commands.Builders; using VkNet.Commands.Info; using VkNet.Enums.SafetyEnums; using VkNet.Model.Attachments; using VkNet.Model.Keyboard; using VkNet.Model.RequestParams; using VkNet.Model.Template; namespace VkNet.Commands { /...
using UnityEngine; public class GemDecorator : Decoration { public GemDecorator(WorldData worldData) : base(worldData) { } public override bool Decorate(Chunk chunk, Vector3i localBlockPosition, IRandom random) { if (IsAValidLocationforDecoration(localBlockPosition.X, localBlockPo...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("OpenBots.Commands.TextFile")] [assembly: A...
using System.IO; namespace TeleSharp.TL.Photos { [TLObject(-2016444625)] public class TLRequestDeletePhotos : TLMethod { public override int Constructor { get { return -2016444625; } } public TLVector<TLAbsInputPhoto> Id { ...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class ExploderScript : MonoBehaviour { public Text screenText; public GameObject explosion; bool exploding; PlayerController ply; Transform leftExploder; Transform rightExploder; G...
using System; using System.Threading; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Autodesk.Revit.DB; using Autodesk.Revit.UI; using Autodesk.Revit.Attributes; using Autodesk.Revit.ApplicationServices; using System.IO; using System.Security.Cryptography.X5...
using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// <summary> /// AlipayIserviceCognitiveOcrVehicledashboardQueryResponse. /// </summary> public class AlipayIserviceCognitiveOcrVehicledashboardQueryResponse : AopResponse...
using System.ComponentModel.DataAnnotations; using Abp.Authorization.Users; namespace WebWithAngular.Models.TokenAuth { public class ExternalAuthenticateModel { [Required] [StringLength(UserLogin.MaxLoginProviderLength)] public string AuthProvider { get; set; } [Required] ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Echo { public class ClusterNode { public readonly ProcessName NodeName; public readonly DateTime LastHeartbeat; public readonly ProcessName Role; publi...
/* * Copyright 2020 Sage Intacct, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not * use this file except in compliance with the License. You may obtain a copy * of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * or in the "LICENSE" file accompanying t...
#if UNITY_2018_4_OR_NEWER using System; using System.Linq; using System.Collections.Generic; using UnityEditor; using UnityEngine; #if UNITY_2019_1_OR_NEWER using UnityEngine.UIElements; #elif UNITY_2018_4_OR_NEWER using UnityEditor.Experimental.UIElements; using UnityEngine.Experimental.UIElements; using UnityEngine.E...
// ------------------------------------------------------------------------------ // <auto-generated> // Generated by Xsd2Code. Version 3.4.0.18239 Microsoft Reciprocal License (Ms-RL) // <NameSpace>Dms.Ambulance.V2100</NameSpace><Collection>Array</Collection><codeType>CSharp</codeType><EnableDataBinding>False<...
using System; using System.Collections; using System.Text; using System.Threading; using System.Drawing; using GHIElectronics.TinyCLR.Devices.Display; using GHIElectronics.TinyCLR.Devices.Gpio; using GHIElectronics.TinyCLR.Pins; namespace Display { class Program { static void Main() { var back...
/* * Copyright 2018 JDCLOUD.COM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http:#www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
/* * Copyright (c) 2007-2009 SlimDX Group * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publi...
using System; using GrpcServiceApp; using Grpc.Net.Client; using System.Threading.Tasks; namespace GrpcClient { class Program { static async Task Main() { Console.WriteLine("Please enter the gRPC service URL."); var url = Console.ReadLine(); us...
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.SqlTools.ResourceProvider.Core; using Microsoft.Sql...
using RCNet.Extensions; using RCNet.MathTools; using System; using System.Collections.Generic; namespace RCNet.Neural.Network.SM.Preprocessing.Neuron.Predictor { /// <summary> /// Class provides computed predictors of the hidden neuron /// </summary> [Serializable] public class PredictorsProvider ...
@model WebLearn1.Models.ChangePasswordViewModel @{ ViewBag.Title = "Change Password"; } <h2>@ViewBag.Title.</h2> @using (Html.BeginForm("ChangePassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() <h4>Change Password Form</h4> <hr /> ...
#define Graph_And_Chart_PRO using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnityEngine; using UnityEngine.Events; using UnityEngine.UI; namespace ChartAndGraph { /// <summary> /// Base class for all axis charts that are scrollable. This class implements some import...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using QLTV.DAL; using QLTV.Entity; namespace QLTV.DLL { public class CTPMDLL { CTPMDAL obj = new CTPMDAL(); public List<CTPM> getAll(String t, String w, String o) { ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Exit : MonoBehaviour { [SerializeField] private LevelManager.Scenes nextLevel; [SerializeField] private Sprite openDoor; [SerializeField] private AudioClip openDoorSFX; [SerializeField] priva...
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using OrchardCore.ContentManagement; using OrchardCore.ContentManagement.Display.ContentDisplay; using OrchardCore.ContentManagement.Display.ViewModels; using OrchardCore.DisplayManagement.Views; namespace OrchardCore.Contents.Deployment.Downlo...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microso...
using System; using BrnShop.Core; namespace BrnShop.Services { /// <summary> /// 后台友情链接操作管理类 /// </summary> public partial class AdminFriendLinks : FriendLinks { /// <summary> /// 创建友情链接 /// </summary> public static void CreateFriendLink(FriendLinkInfo friendLinkIn...
namespace EmployeesSystem.Client.Commands { using System; using EmployeesSystem.Services; public class SetAddressCommand : ICommand { private readonly EmployeeService employeeService; public SetAddressCommand(EmployeeService employeeService) { this.employeeService ...
#pragma warning disable 108 // new keyword hiding #pragma warning disable 114 // new keyword hiding namespace Windows.UI.Composition { #if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__ [global::Uno.NotImplemented] #endif public partial class CompositionProjectedShado...
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
// *** WARNING: this file was generated by the Pulumi SDK Generator. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.Azur...
/* * Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "l...
using System; using System.ComponentModel.DataAnnotations; using System.Threading; using System.Threading.Tasks; using Alderto.Data; using Alderto.Data.Models; using AutoMapper; using MediatR; namespace Alderto.Application.Features.Currency { public static class LogCurrencyTransaction { public class Co...
using UIKit; namespace Collections.iOS { public class Application { // This is the main entry point of the application. static void Main(string[] args) { // if you want to use a different Application Delegate class from "AppDelegate" // you can specify it here. ...
@page @model AboutModel @{ Layout = "_MainLayout"; dynamic dict = Locale.GetDictionary("Scada.Web.Pages.About"); ViewBag.Title = dict.PageTitle; var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; } @section Styles { <link href="~/css/pages/about.min.css" rel="styles...
using System; using System.Collections.Generic; namespace OASP4Net.Test.Model { public partial class Ingredient { public Ingredient() { DishIngredient = new HashSet<DishIngredient>(); OrderDishExtraIngredient = new HashSet<OrderDishExtraIngredient>(); } ...