text
stringlengths
13
6.01M
using System; using System.Data; using System.Data.SqlClient; using System.Web.UI.WebControls; public partial class Admin_Cheques_View : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Helper.ValidateAdmin(); if (!IsPostBack) { DateTime dn = Hel...
using System; using System.Runtime.InteropServices; using System.Windows.Media; namespace WindowsUpdateNotifier { public static class ColorHelper { private static readonly Color INVALID_COLOR = Color.FromArgb(255, 255, 0, 255); public static Color GetWindowsThemeBackgroundColor() { ...
using System; using System.Linq; using System.Linq.Expressions; using CYJ.Utils.Extension.ReflectionExtension; namespace CYJ.Utils.Extension.LinqExtension { /// <summary> /// Queryable 扩展 /// </summary> // ReSharper disable once CheckNamespace public static class QueryableExtensions { ...
//using Uintra.Features; //using Uintra.Infrastructure.Helpers; //namespace Uintra.Infrastructure.Providers //{ // public class XPathProvider : IXPathProvider // { // private readonly IDocumentTypeAliasProvider _documentTypeAliasProvider; // public XPathProvider(IDocumentTypeAliasProvider documen...
using UnityEngine; using System.Collections.Generic; using GFW; namespace CodeX { public class GameManager : ManagerModule { protected static bool initialize = false; private List<string> downloadFiles = new List<string>(); public bool ResInitOk = false; /// <summary> /...
using System.Collections.Generic; namespace SFA.DAS.ProviderCommitments.Web.Models.Cohort { public class DraftViewModel : SortViewModel { public long ProviderId { get; set; } public ApprenticeshipRequestsHeaderViewModel ApprenticeshipRequestsHeaderViewModel { get; set; } public IEnumer...
namespace Hz.Test { public class user { public int id{get;set;} public string username{get;set;} public string nickname{get;set;} } public class temp { public string shopid{get;set;} public string opid{get;set;} } }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class GridLevel : Level { public Vector3[] NEIGHBORS = new Vector3[4] { new Vector3(1, 0, 0), new Vector3(0, 1, 1), new Vector3(0, -1, 2), new Vector3(-1, 0, 3) }; public int m_width; public int m_height; ...
using Nac.Field.Citect; public interface INacFieldCitectContext : INacContext { NacFieldCitectProxy Citect { get; } } public static class NacFieldCitectGlobal { public static INacFieldCitectContext G { get; set; } } namespace Nac.Field.Citect { using System; using static NacFieldCitectGlobal; p...
using System; using System.Linq; using System.Collections.Generic; using System.Collections.Concurrent; using Microsoft.UnifiedRedisPlatform.Core.Services; using Microsoft.UnifiedRedisPlatform.Core.Services.Models; using Microsoft.UnifiedRedisPlatform.Core.Services.Interfaces; namespace Microsoft.UnifiedRedisPlatform...
using System; using System.Collections.Generic; using Phenix.Business; using Phenix.Business.Tunnel; using Phenix.Core; namespace Phenix.Test.使用案例.业务数据的读写.快速Fetch { class Program { static void Main(string[] args) { Console.WriteLine("本程序为{0}位,请确认所连数据库客户端引擎是否与之匹配?(如不匹配可调整本程序的'平台目标'生成类型)", Environment...
using BusinessObjects; using DataAccess.IRepository; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataAccess.Repository { public class BookmarkRepository : IBookmarkRepository { public void AddBookmark(string username, in...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PointInterface { class CenterPoint : Ipoint { //fields private or protected private int _pointX; private int _pointY; //constructor public Cent...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; using System.IO; namespace SimbaTvaerfagligt { public static class SerializationHandler { public static string SerializeRound(Savanna s) { ...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Models.ViewModels { public class OrganisationItemViewModel { public string Id { get; set; } public string OrganisationId { get; set; } public string RowVersionN...
using Backend.Model.Pharmacies; using IntegrationAdaptersActionBenefitService.Repository; using System.Collections.Generic; using System.Linq; namespace IntegrationAdaptersActionBenefitService.Service { public class PharmacyService : IPharmacyService { private IPharmacyRepo _pharmacyRepo; pu...
using System; using System.Collections.Generic; using System.Text; namespace ImagoCore.Models { public abstract class BeprobbareFertigkeitBase : FertigkeitBase { public BeprobbareFertigkeitBase(ImagoEntitaet identifier) :base(identifier){ } public BeprobbareFertigkeitBase() { ...
using System.Diagnostics; using OpenQA.Selenium; namespace vicroads.Pages { public class Step1page : DriverHelper { IWebElement vehicletype => Driver.FindElement(By.XPath("//option[contains(text(), 'Motorcycle')]")); IWebElement carryingCapaticy => Driver.FindElement(By.XPath("//option[contain...
using DFC.ServiceTaxonomy.Title.Indexes; using DFC.ServiceTaxonomy.Title.Models; using OrchardCore.ContentManagement.Metadata; using OrchardCore.ContentManagement.Metadata.Settings; using OrchardCore.Data.Migration; using OrchardCore.Modules; using OrchardCore.Recipes.Services; using YesSql.Sql; namespace DFC.Service...
using System; using System.Threading; using System.Threading.Tasks; using AutoFixture; using FluentAssertions; using Moq; using NUnit.Framework; using SFA.DAS.CommitmentsV2.Api.Client; using SFA.DAS.CommitmentsV2.Api.Types.Responses; using SFA.DAS.CommitmentsV2.Shared.Interfaces; using SFA.DAS.CommitmentsV2.Types; usi...
using System; using UIKit; using Aquamonix.Mobile.IOS.UI; namespace Aquamonix.Mobile.IOS { /// <summary> /// Extension methods for UILabel /// </summary> public static class UILabelExtensions { public static void SetFontAndColor(this UILabel label, FontWithColor fontWithColor) { label.Font = fon...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Amazon.S3; using Amazon.S3.Model; using Newtonsoft.Json; using Shared; namespace ScoreSystem { public static class CommonFunctionality { public static readonly Range DefaultRange =...
using KingNetwork.Shared; using System; using System.Linq; using System.Net; using System.Net.Sockets; using static KingNetwork.Server.ClientConnection; namespace KingNetwork.Server { /// <summary> /// This class is responsible for managing the web socket network listener. /// </summary> public class ...
using Euler_Logic.Helpers; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Euler_Logic.Problems { public class Problem268 : ProblemBase { public override string ProblemName { get { return "268: Counting numbers with ...
using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DAL.Models { public class CartItem : IModel { public int ShoeId { get; set; } public string Brand { get; set; } public string Model...
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Linq; public class Rule { public string message; public Func<bool> cb; public Rule(){ } } public class Ability { // ammo:number = 1 // maxammo:number = 1 // ammorechargerate:number ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Boilerplate.Web.App.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; // For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 ...
using Compent.Extensions; using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using System.Web; using Uintra.Features.Links.Models; namespace Uintra.Infrastructure.Extensions { public static class StringExtensions { private const string GroupIdQuery...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CreatingAfarm { class goat { public void GoatSpeak() { Console.WriteLine("This is the goat shan "); Console.WriteLine(" the goat goes hhaaa"); ...
namespace SciVacancies.WebApp.ViewModels { public class VacancyElasticResult: SciVacancies.ReadModel.ElasticSearchModel.Model.Vacancy { public string OrganizationName { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace BackendApi.DB.DataModel { public class ORDER_LIST_DETAIL { public string ORDER_NO { get; set; } public string BUMP_ID { get; set; } public string BUMP_NM { get; set; } pub...
using System; using NUnit.Framework; namespace Laan.Sql.Parser.Test { [TestFixture] public class TestTokens { [Test] public void Empty_Tokens_Are_The_Same() { // Setup Token empty1 = new Token(); Token empty2 = new Token(); ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class TestMoveMatrix : MonoBehaviour { [Range(1f, 20f)] public float speed = 1f; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update...
using System; namespace UKPR.Hermes.Models { public class FRContract : Contract { public int SendGenerationAfterCeaseTimeUtc { get; set; } public string LastDUI { get; set; } public bool Armed { get; set; } = false; public string LastNUI { get; set; } public DateTime La...
using System; namespace PatientService.Model.Memento { public class TherapyMemento : IMemento { public int Id { get; set; } public string DoctorJmbg { get; set; } public string DoctorName { get; set; } public string DoctorSurname { get; set; } public DateTime StartDate ...
using UnityEngine; public class DestroyObject : MonoBehaviour { private float bottomLimit = 0; // Update is called once per frame void Update() { if (transform.position.y < bottomLimit) { Destroy(gameObject); } } }
using UnityEngine; namespace TexturePacker.Editor.Domain { public class TextureDescription : ScriptableObject { public string Name; public string TransformationDate; public TextAsset JsonDataFile; public Texture2D Texture; } }
using Datalayer; using Datalayer.Domain; using System; namespace Repository_UnitOfWork { class Program { static void Main(string[] args) { using (var uom = new UnitOfWork(new SchoolContext())) { var students = uom.Students.GetAll(); var instructor = new Instructor { Name = "Awesome Guy",...
using System; using System.Collections.Generic; using System.Linq; using FCM.Net; namespace PushNotificationApp.Services { public static class PushNotificationService { public const string serverKey = "AAAAJJ0zPT4:APA91bHBvX_booS8XcF2E6JsUhJmVVqvNg3H_-zeRHy71Zl51Hdl3_wvyxk_5OqHFpMMJB2IB6I1DfSpTZDCUix...
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 System.Net; using System.Net.Sockets; using System.Text.RegularExpressions; namespace...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Threading.Tasks; using ApartmentApps.Api.ViewModels; using ApartmentApps.Data; using ApartmentApps.Data.Repository; using Microsoft.AspNet.Identity; using Ninject; using SendGrid; using SendGrid.Helpers.Mail; namespace Ap...
using UnityEngine; public class NetworkRootMovie : MonoBehaviour { public NetworkRpcMsgSpawn mNetworkRpcMsgSpawn; static NetworkRootMovie _Instance; public static NetworkRootMovie GetInstance() { return _Instance; } void Start() { _Instance = this; } }
using System; using System.Collections.Generic; using System.Text; namespace VirtualPetTeam { class Menus { public void GetMainMenu() { string menuChoice = ""; bool playing = true; PetShelter shelter = new PetShelter(); do { ...
using System.Collections.Generic; using Assets.Scripts.Models.ResourceObjects; using Assets.Scripts.Models.ResourceObjects.CraftingResources; namespace Assets.Scripts.Models.Decor { public class CupboardRoom : Decor { public CupboardRoom() { LocalizationName = "item-cupboard_room";...
// Copyright (c) 2020, mParticle, 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or ag...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace tools.File { /// <summary> /// 数据区 /// </summary> class Data_Chunk { /// <summary> /// 文件前四个字节 为RIFF /// </summary> public byte[] ID = new byte[] { 0x64, 0x61, 0x74, 0x61 }; /...
using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.IO; using System.Threading; namespace Appnotics.Library.UI.Helpers { public class BugLogger { private string appInfo = null; private string sSource = "Slideshow"; private Boolean verboseLogging = false; ...
using System; using System.Web; using System.Web.Security; using Imp.Core.Domain.Users; using Imp.Services.Users; namespace Imp.Services.Security { /// <summary> /// Authentication Service /// </summary> public class FormsAuthenticationService : IAuthenticationService { #region Field ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleAppSpace_Objects { /// <summary> /// classe pianeta, non sono presenti movimenti in tale contesto /// </summary> class Pianeta : Statico { //c...
using System; using System.Collections.Generic; using System.IO; namespace HorseBFS { class Program { static void Main(string[] args) { var dictPath = Directory.GetCurrentDirectory(); var input = Path.Combine(dictPath, "in.txt"); var output = Path.Combine(dictPath, "out.txt"); var content = File.Re...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using AeroORMFramework; namespace SpringHackApi.Models { public class CouponCode { [AutoincrementID, PrimaryKey, CanBeNull(false)] public int ID { get; set; } [CanBeNull(false)] public int Cou...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Different { internal class Listing01 { public static void MainListing01() { string msg, title; MessageBoxIcon icon; ...
using System; namespace Dg.KMS.Domain { public class Class1 { } }
using BashSoft.Exceptions; using BashSoft.Judge; using BashSoft.Network; using BashSoft.Repository; namespace BashSoft.IO.Commands { public class ShowWantedDataCommand : Command { public ShowWantedDataCommand(string input, string[] data, Tester tester, StudentsRepository repository, DowloadManager dow...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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.Web.Mvc; using AutoMapper; using Profiling2.Domain.Contracts.Tasks; using Profiling2.Domain.Prf; using Profiling2.Domain.Prf.Units; using Profiling2.Web.Mvc.Areas.Profiling.Controllers.ViewModels; using Profiling2.Web.Mvc.Controllers; using SharpArch.NHibernate.Web.Mvc; namespace Profiling2.Web.Mvc.Areas...
using EmberKernel.Plugins.Models; using EmberKernel.Services.UI.Mvvm.ViewModel.Plugins; using System; using System.Collections.Generic; using System.Text; using System.Windows.Input; namespace EmberWpfCore.Components.PluginsManager.Commands { class EnablePluginCommand : ICommand { public IPluginManage...
using System; using System.Collections.Generic; namespace Quokka.RISCV.Integration.Generator.DMA { public class DMATypeLookups { public static uint DataSize(Type data) { var sizes = new Dictionary<Type, uint>() { { typeof(char), 8 }, ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AI.Functions { public interface IActivationFunction { /// <summary> /// Calculates function value at given point /// </summary> double Calculate(double ...
using Xamarin.Forms; using XamJam.Nav; namespace XamJam.Demo.ViewModel { public class MainViewModel { public Command ShowScreenCommand { get; } public Command ShowImageWallCommand { get; } public MainViewModel(Navigator nav) { ShowImageWallCommand = nav.CreateNavi...
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; [RequireComponent(typeof(Collider))] public class buttonController : MonoBehaviour { public Rigidbody platform = null; public Ragdoll ragdoll = null; public GameObject boxPrefab = null; public Transform boxSpa...
#if UNITY_2019_1_OR_NEWER using UnityEditor; using UnityAtoms.Editor; namespace UnityAtoms.BaseAtoms.Editor { /// <summary> /// Value List property drawer of type `Collision2D`. Inherits from `AtomDrawer&lt;Collision2DValueList&gt;`. Only availble in `UNITY_2019_1_OR_NEWER`. /// </summary> [CustomPrope...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace VA_ITCMS2000 { public class ITCMS2000Param : Param { /// <summary> /// ITC MS 2000 广播服务器地址 /// </summary> public string Address { get { return GetSt...
using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Wgaffa.Functional.Tests { public class OfTypeTests { public interface IVehicle { } public class Car : IVehicle { } public class Truck : I...
namespace test1_task3 { /// <summary> /// Class contains method which checks for validity of the entered automobile parameters. /// </summary> public class ValidatorOfAutomobileParameters { /// <summary> /// Method checks for validity of the automobile parameters. /// </summ...
using MvcBartender.Data.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using MvcBartender.Data.Models; namespace MvcBartender.Data.Repositories { public class OrderRepository : IOrderRepository { private readonly MyAppDbContext _myAppDbCon...
using System.Collections; using System.Collections.Generic; using UnityEngine; public static class TenantManager { static List<Tenant> tenants = new List<Tenant>(); static TenantManager() { for(int i = 0; i < 1000; i ++) { int maxRent = (int)Distribution.Random(0, 1600) .RoundToInterval(100...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using Windows.Devices.Input; using Windows.System; using Windows.UI.Core; using Windows.UI.Xaml; namespace Prism.Windows.AppModel { public class DeviceGestureService : I...
using System; namespace EngageNet.Exceptions { [Serializable] public class ServiceTemporarilyUnavailableException : ResponseException { public ServiceTemporarilyUnavailableException(int errorCode, string message, Exception inner) : base(errorCode, message, inner) { } public ServiceTemporarilyUnavailabl...
using System.Text.Json.Serialization; namespace SujaySarma.Sdk.Azure.MarketplaceCatalog { /// <summary> /// Links in a <see cref="GroupItem"/>. /// </summary> public class Link { /// <summary> /// An Id (for uniqueness) for this item. Typically numeric, but may be different. ...
using Witsml.Data; namespace Witsml.Extensions { public static class WitsmlLogExtensions { public static string GetStartIndexAsString(this WitsmlLog witsmlLog) { if (witsmlLog.StartIndex == null && string.IsNullOrEmpty(witsmlLog.StartDateTimeIndex)) return null; return w...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.ServiceProcess; using System.Text; using System.Threading.Tasks; namespace TesrtWindowsServiceDeploy { class Program { static void Main(string[] args) { #if DEBUG var service = new TestWindowsSe...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NfePlusAlpha.Infra.Data.Retorno { public class NfePlusAlphaRetorno { public bool blnTemErro { get; set; } public string strMensagemErro { get; set; } public obj...
namespace Merchello.UkFest.Web.Models.Checkout { using System; /// <summary> /// Represents a shipment rate quote. /// </summary> public class DeliveryQuote { /// <summary> /// Gets or sets the key. /// </summary> public Guid Key { get; set; } /// <summ...
using BugTracker.BusinessLayer; 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 BugTracker.GUILayer { public partial class frmDetalleBug :...
using System; using System.Collections.Generic; using System.Linq; using AutoGrabberMod.Features; using AutoGrabberMod.Models; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using StardewModdingAPI; using StardewValley; using StardewValley.Menus; namespace ...
using Alabo.Web.Middlewares; using Microsoft.AspNetCore.Builder; namespace Alabo.Web.Extensions { /// <summary> /// 中间件扩展 /// </summary> public static partial class Extensions { /// <summary> /// 注册错误日志管道 /// </summary> /// <param name="builder">应用程序生成器</param...
using Foundation; using CC.Utilities; namespace CC.Mobile.Services { public class IOSFileSystemAttributesSetter:IFileSystemAttributesSetter { #region IFileSystemAttributesSetter implementation public void SetAttributes(string path, FileAttributes attributes) { NSFileManager.SetSkipBackupAttribute (path, !...
using Lunchify.Data.Models; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lunchify.Data.Services { public class LunchifyDbContext : DbContext { public LunchifyDbContext(DbContextOptions...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Microsoft.WindowsAzure.Storage.Table; namespace ArchosAPI { public class DeloreanData :TableEntity { public DeloreanData(string pKey, string rKey) { this.PartitionKey = pKey...
using System; using System.Net.Mail; using TeamCityChangeNotifier.Helpers; using TeamCityChangeNotifier.Models; namespace TeamCityChangeNotifier.Email { public class EmailSender { private readonly ConfigSettings _settings = new ConfigSettings(); public void SendNotification(ChangeSet changeSet) {...
namespace TheMapToScrum.Back.DAL.Entities { public class Department : EntityBase { public string Label { get; set; } } }
using UnityEngine; namespace IsoTools.Internal { public class IsoFakeCollider : MonoBehaviour { IsoCollider _isoCollider = null; public void Init(IsoCollider iso_collider) { _isoCollider = iso_collider; } public IsoCollider isoCollider { get { return _isoCollider; } } } } // namespace IsoTool...
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.AspNet.SignalR; using Microsoft.AspNet.SignalR.Hubs; using Phenix.Core.Net; using Phenix.Core.Security; using Phenix.Core.SyncCollections; using Phenix.Core.Web; namespace Phenix.Services.Host.Service...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace lastfmRecommedizer.LastFmApiClient { public class ListenedTracks { [XmlElement(ElementName="track")] public List<ListenedTrack> listene...
#nullable enable using JetBrains.Annotations; using Content.Server.GameObjects.Components.Doors; using Content.Server.GameObjects.Components.GUI; using Content.Server.GameObjects.Components.Items.Storage; using Content.Shared.GameObjects.Components.Inventory; using Content.Shared.GameObjects.Components.Damage; using Co...
namespace Merchello.UkFest.Web.Ditto.ValueResolvers { using Merchello.UkFest.Web.Models; using Merchello.Web.Models.VirtualContent; using Our.Umbraco.Ditto; /// <summary> /// Creates an Add to Basket model. /// </summary> public class AddToBasketValueResolver : DittoValueResolver { ...
using System.Linq; using System.Reflection; using Baseline; using Marten.Util; using NpgsqlTypes; namespace Marten.Schema { public class UpsertArgument { private MemberInfo[] _members; public string Arg { get; set; } public string PostgresType { get; set; } public string Column...
using System; using System.Collections.Generic; using Framework.Core.Common; using Framework.Core.Config; using Tests.Pages.Oberon.CodeManagement; using Tests.Pages.Oberon.Modals; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; using OpenQA.Selenium.Support.PageObjects; using OpenQA...
using System; using System.Configuration; using System.Reflection; using HTB.Database; using HTB.v2.intranetx.routeplanter; namespace HTB { public class Global : System.Web.HttpApplication { private static readonly log4net.ILog Log = log4net.LogManager.GetLogger(MethodBase.GetCurrentMethod()?.Declarin...
namespace Rover.Models { public static class InstructionExtension { /// <summary> /// Get an Instruction object from the input text string /// </summary> /// <param name="instructionText">instruction string</param> /// <returns>Instruction</returns> public static...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ApartmentApps.Api.DataSheets; using ApartmentApps.Api.Services; using ApartmentApps.Data; using ApartmentApps.Data.DataSheet; using ApartmentApps.Data.Repository; using ApartmentApps.Portal.Control...
using LHRLA.DAL; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace LHRLA.LHRLA.DAL.DataAccessClasses { public class RolePagesDataAccess { #region Insert public bool AddRolePages(tbl_Role_Pages row) { try { ...
using System; using zm.Util; namespace zm.Levels { /// <summary> /// Class that holds collection of levels, it's used to enable serialization of List<Level> /// </summary> [Serializable] public class LevelsCollection : GenericSerializableCollection<Level> { } }
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using POSServices.Models; using POSServices.WebAPIModel; namespace POSServices.Controllers { [Route("api/[controlle...
using System; using System.Collections.Generic; using System.Text; namespace CursoCsharp.MetodosEFuncoes { class ExemploLambda { public static void Executar() { Action AlgoNoConsole = () => { Console.WriteLine("Lambda com C#!!!"); }; ...
//The MIT License(MIT) //copyright(c) 2016 Alberto Rodriguez //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, mo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TaskManager.DataAccess { public interface ITaskRepository { void AddTask(Task task); void EditTask(Task task); IQueryable<Task> GetAllTask(); //IQueryab...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace UniversityCourseAndResultMangementSystem.Models { public class RegisterStudentModel { public int StudentId { get; set; } public string Name { get; set; } ...
namespace Taggart.Data.Models { public partial class TrackMetaDataConfiguration : System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<TrackMetaData> { public TrackMetaDataConfiguration() : this("trx") { } public TrackMetaDataConfiguration(string schema) { ...