text
stringlengths
13
6.01M
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; namespace DataLayer.Conexion { public interface IOperacionesConexion { /// <summary> /// Obtiene o establece el comando y la conexión de base de datos que se utilizan para rellen...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; using Voronov.Nsudotnet.BuildingCompanyIS.Entities.RelationTables; namespace Voronov.Nsudotnet.BuildingCompanyIS.Entities { [Table("bcis.Ve...
using System; using ServiceDesk.Core.Entities.RequestSystem; using ServiceDesk.Core.Interfaces.Common; using ServiceDesk.Core.Interfaces.Factories.RequestSystem; namespace ServiceDesk.Infrastructure.Implementations.Factories.RequestSystem { public class RequestAttachmentData : IFactoryData { public st...
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 restapi3 { public partial class NewCar : Form { public Form1 ParentForm { get;...
using UnityEngine; using System.Collections; public class Instructions : MonoBehaviour { public bool autoPlay = false; Transform panel; int index = 0; void Start() { panel = transform.FindChild("ParentPanel"); if (autoPlay) { StartCoroutine("AutoPlay"); } } public void next() { if (index < panel....
using System; using System.Runtime.Serialization; namespace OmniSharp.Extensions.JsonRpc.Server { /// <summary> /// Exception raised when an LSP request is made for a method not supported by the remote process. /// </summary> [Serializable] public class MethodNotSupportedException : Reques...
using KPI.Model.DAO; using KPI.Model.ViewModel; using MvcBreadCrumbs; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Web; using System.Web.Mvc; namespace KPI.Web.Controllers { [BreadCrumb(Clear = true)] public class OCCategoriesController : BaseCo...
using CloneDeploy_Entities.DTOs.ImageSchemaBE; namespace CloneDeploy_Entities.DTOs { public class MulticastArgsDTO { public string clientCount { get; set; } public string Environment { get; set; } public string ExtraArgs { get; set; } public string groupName { get; set; } ...
using System; using System.Collections.Generic; using System.Text; using TestApplicationDomain.Entities; namespace TestApplicationInterface.Repository { public interface IPricingRepository : IRepository<Pricing> { } }
using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; namespace NetFabric.Hyperlinq { public static partial class AsyncEnumerableExtensions { [MethodImpl(MethodImplOpt...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class MainMenuManager : MonoBehaviour { [SerializeField] private GameObject mainMenuCamera; [SerializeField] private GameObject hubPrefab; private GameObject hub; private string playerParentPrefabPath; ...
using System; using System.Collections.Generic; namespace SheMediaConverterClean.Infra.Data.Models { public partial class VBarcodeAufenthalt { public string Patientennummer { get; set; } public string PatientNachname { get; set; } public string PatientVorname { get; set; } publ...
using InternDevelopmentProject.DataLogic; using InternDevelopmentProject.Models; using InternDevelopmentProject.ViewModel; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace InternDevelopmentProject.BusinessLogic { public class OperatorSignUpDetail { bool Fl...
using BlazorUtils.Dev.Properties; using System; using System.Reflection; using System.Threading.Tasks; using static BlazorUtils.Dom.DomUtils; namespace BlazorUtils.Dev { internal static class DevUtils { private static bool _isBooted = false; internal enum TypeGroup { Numer...
using System; using fraction_calculator_dotnet.Entity; using fraction_calculator_dotnet.Operators; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; namespace fraction_calculator_dotnet.Tests { [TestClass] public class CalculatorTests { private Calculator _calculator; [TestIn...
using Microsoft.Xna.Framework.Graphics; using Nez; using Nez.Sprites; using Nez.Tiled; namespace HackHW2018.Factories { public static class BackgroundFactory { public static Entity MakeBackground(Scene scene) { var entity = scene.createEntity("background"); var backgro...
using System; namespace Exercise_1 { class Program { static void Main(string[] args) { int score; string result = ""; Console.Write("Write how many points you got : "); score = int.Parse(Console.ReadLine()); if (score <= 50) ...
using System; using System.Windows.Media; using WMagic.Brush.Basic; namespace WMagic.Brush.Shape { public class GArch : AShape { #region 变量 // 粗细 private int thick; // 颜色 private Color color; // 填充 private Color stuff; // 斜率 private doub...
// Copyright 2021 Google LLC. 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. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applica...
using System; using System.Data; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using CRVCManager.DataModels; using CRVCManager.Utilities; namespace CRVCManager { /// <summary> /// Interaction logic for PetWindow.xaml /// </summary> public partia...
namespace P01_HospitalDatabase.Data { public class Configurate { public const string ConnectionString = @"Server=DESKTOP-CP2NEHV\SQLEXPRESS;Database=Hospital;Integrated Security=True;"; } }
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class GameMgr : MonoBehaviour { public float m_gameOverDuration = 5; public AnimationCurve m_gameOverSlowdown = new AnimationCurve(new Keyframe(0, 1), new Keyframe(1,0...
namespace Plus.Communication.Packets.Outgoing.Rooms.Settings { internal class RoomSettingsSavedComposer : MessageComposer { public int RoomId { get; } public RoomSettingsSavedComposer(int roomId) : base(ServerPacketHeader.RoomSettingsSavedMessageComposer) { ...
using Microsoft.AspNetCore.Identity; using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace MyPage.Models.Infra { public class Usuario : IdentityUser { [Required] publi...
using System; using System.Collections.Generic; using System.Text; namespace EjemplosDelegados1 { class Numeros { List<int> Numero = new List<int>() { 1,2,3,4,5,6,7,8,9,0 }; } }
using GaleService.DomainLayer.Managers.Models; using GaleService.DomainLayer.Managers.Models.Request; using GaleService.DomainLayer.Managers.Models.Response; using System.Threading.Tasks; namespace GaleService.DomainLayer.Managers.Services.Fitbit { internal abstract class FitbitGatewayBase { public as...
using Cotizacion.Domain; using Cotizacion.Service.Interfaces; using Microsoft.Extensions.Options; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Net.Http; namespace Cotizacion.Service.Services { public class CotizacionExtService: ICotizacionService { private readon...
using StudentSystem.Data.Repositories; using StudentSystem.Model; namespace StudentSystem.Data { public interface IStudentSystemData { IGenericRepository<Student> Students { get; } IGenericRepository<Course> Courses { get; } IGenericRepository<Homework> Homeworks { get; } int ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WAO_Player.Class { public class Static_String { public static string[] URLSearch = { "http://www.nhaccuatui.com/tim-nang-cao?title=", "&singer=", "&type=", "&page=" }; ...
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Game1 { public class Camera2d { protected float _zoom; // Camera Zoo...
// // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for full license information. // using System.ComponentModel; using System.Web.UI; using System.Web.UI.WebControls; using DotNetNuke.UI.Modules; namespace DotNetNuke.ExtensionPoints { ...
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 CoordControl.Core.Domains; namespace CoordControl.Forms { public interface IFormPlanEdit ...
using System.Net; using Newtonsoft.Json; using Xunit; using StudentExercises.Models; using System.Threading.Tasks; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; namespace TestStudentExercises { public class TestInstructor { [Fact] public async Ta...
using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.IO; using System.Web.Security; using Microsoft.Reporting.WebForms; using System.Text; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using...
using LuaInterface; using SLua; using System; using UnityEngine; public class Lua_UIImageButton : LuaObject { [MonoPInvokeCallback(typeof(LuaCSFunction))] public static int get_target(IntPtr l) { int result; try { UIImageButton uIImageButton = (UIImageButton)LuaObject.checkSelf(l); LuaObject.pushValue(l...
using System.Threading.Tasks; using Meziantou.Analyzer.Rules; using TestHelper; using Xunit; namespace Meziantou.Analyzer.Test.Rules; public sealed class UseStringCreateInsteadOfFormattableStringAnalyzerTests { private static ProjectBuilder CreateProjectBuilder() { return new ProjectBuilder() ...
using System; using TMPro; using UnityEngine; using UnityEngine.UI; [ExecuteInEditMode] public class Tooltip : MonoBehaviour { public TextMeshProUGUI contentText; public TextMeshProUGUI headerText; public LayoutElement layoutElement; public int characterWrapLimit; public RectTransform rectTransform; ...
namespace ConsoleWebServer.Framework { using System.Collections.Generic; /// <summary> /// Basic Action Result interface that contains the method GetResponse(); /// </summary> public interface IActionResult { /// <summary> /// Response Headers are the headers passed to the Resu...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Idenz.Modules.Management { public partial class frmModules : Core.Windows.frmListBaseForm { public frmModule...
using PMA.Store_Framework.Domain; namespace PMA.Store_Domain.Photos.Entities { public class Photo : BaseEntity { public string Url { get; set; } public int Size { get; set; } } }
namespace POS_SP.Models { public enum PaymentTypes { Cash, CreditCard, BKash, Rocket, EMI }; }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.Xml.Linq; //xml操作工具类 namespace XMLHelper { public static class XMLHelper { /// <summary> /// 复制节点方法,等等(参数需要修改) /// </summary> /// <param name="cell">单元格</param...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; public static class Logger { static string applicationpath = AppDomain.CurrentDomain.BaseDirectory; static string filename = "BHS_Now_Emulator_Log_"; public static int counter {get;set;} publ...
using MetroFramework; using MetroFramework.Forms; using PDV.CONTROLER.Funcoes; using PDV.DAO.DB.Utils; using PDV.DAO.Entidades.Estoque.Suprimentos; using PDV.DAO.Enum; using PDV.VIEW.App_Context; using System; using System.Windows.Forms; namespace PDV.VIEW.Forms.Cadastro.Suprimentos { public partial class FCA_Alm...
using System; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using OmniSharp.Extensions.JsonRpc; using ISerializer = OmniSharp.Extensions.JsonRpc.ISerializer; namespace OmniSharp.Extensions.DebugAdapter.Protocol { public abstract class...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace Project_1 { public partial class ViewTickets : System.Web.UI.Page { Dictionary<string, string> ticket = new...
using Xamarin.Forms; namespace Scoutworks.Views.MatchViews { public partial class MatchPageTab2Auto : ContentPage { public MatchPageTab2Auto() { InitializeComponent(); } } }
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Web.Mvc; using System.Web.Security; namespace Proyek_Informatika.Models { public class PenilaianSidangContainer { public string NPM { get; set; } public string...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GlobalModels { public class DiscussionT { /// <summary> /// DTO Model for discussions backend - > frontend /// </summary> public DiscussionT() {...
namespace HandCoded.Shared { /// <summary> /// A constant class used on this demo. /// </summary> public static class Constants { /// <summary> /// The name of the server. /// </summary> public const string Server = "(local)\\MSSQL01"; /// <summary> ...
using System; using System.IO; namespace HomeWork6._2 { // Суханов // Модифицировать программу нахождения минимума функции так, чтобы можно было передавать функцию в виде делегата. // а) Сделать меню с различными функциями и представить пользователю выбор, для какой функции и на каком отрезке находить мин...
using System.Collections.Generic; using AutoMapper; using EnsureThat; using L7.Domain; using MediatR; namespace L7.Business { public class GetProductsQueryHandler : RequestHandler<GetProductsQuery, IEnumerable<ProductModel>> { private readonly IProductRepository productRepository; private read...
using System; using System.Text.RegularExpressions; namespace Gomoku.Commands.Classes { public class Turn : ACommand { public Turn() :base(ECommand.TURN) {} public override DataCommand CreateDataCommand(string input) { Regex mRegex = new Regex("TURN (\\...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HackerrankSolutionConsole { public class solve_me_first : Challenge { static int solveMeFirst(int a, int b) { // Hint: Type return a+b; below ...
using System.Collections.Generic; using Logs.Models.Enumerations; using NUnit.Framework; namespace Logs.Models.Tests.UserTests { [TestFixture] public class PropertiesTests { [Test] public void TestProperties_ShouldSetLogCorrectly() { // Arrange var log = new...
using MediatR; using Publicon.Core.Exceptions; using Publicon.Core.Repositories.Abstract; using Publicon.Infrastructure.DTOs; using Publicon.Infrastructure.Managers.Abstract; using Publicon.Infrastructure.Queries.Models.Publication; using System.IO; using System.Text.RegularExpressions; using System.Threading; using S...
// ---------------------------------------------------------------------------- // <copyright file="RegionNames.cs" company="SOGETI Spain"> // Copyright © 2015 SOGETI Spain. All rights reserved. // Build user interfaces with Prism by Osc@rNET. // </copyright> // ------------------------------------------------...
// Copyright (c) Russlan Akiev. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. namespace ServiceBase.Plugins { using System.Collections.Generic; using Microsoft.AspNetCore.Builder; /// <summary> /// Contains <s...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace mokiniu_sistema.Models { public class Vaikas { public int VaikasId { get; set; } [Required] public string Vardas { get; set; } ...
using System; using BPiaoBao.Client.DomesticTicket.Model; using BPiaoBao.Client.UIExt; using GalaSoft.MvvmLight.Command; using System.Threading.Tasks; using BPiaoBao.AppServices.Contracts.DomesticTicket; using GalaSoft.MvvmLight.Threading; using BPiaoBao.AppServices.DataContracts.DomesticTicket.DataObject; using BPiao...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace bot_backEnd.Models.AppModels { public class AppInstitution { public int Id { get; set; } public string Name { get; set; } public int HeadquaterID { get; set; } public stri...
public static class Game { public enum Mode { FREE } public enum State { Paused, Running } public static class Tag { public static readonly string Civilian = "Civilian"; public static readonly string Player = "Player"; } }
using REQFINFO.Domain; using REQFINFO.Repository; using REQFINFO.Repository.DataEntity; using REQFINFO.Repository.Infrastructure.Contract; using REQFINFO.Business.Interfaces; using System.Collections.Generic; using ExpressMapper; using REQFINFO.Utility; using System.Linq; using System; namespace REQFINFO.Business { ...
using System; using System.Data; using System.Collections.Generic; using Maticsoft.Common; using PDTech.OA.Model; namespace PDTech.OA.BLL { /// <summary> /// 资金来源基础信息表 /// </summary> public partial class FUNDS_INFO { private readonly PDTech.OA.DAL.FUNDS_INFO dal=new PDTech.OA.DAL.FUNDS_INFO(); public FUNDS_IN...
using System; using System.Collections.Generic; using System.Linq; using SubSonic.Extensions; using SubSonic.Query; namespace Pes.Core { public class Testt { public Permission Permission { set; get; } public AccountPermission AccountPermission { set; get; } public Account Ac...
/** * * Copyright (c) SEIKO EPSON CORPORATION 2016 - 2017. All rights reserved. * */ using UnityEngine; using System.Collections; #if UNITY_5_3_OR_NEWER using UnityEngine.SceneManagement; #endif public class SceneSwitcher : MonoBehaviour { public string previousScene; public string nextScene; // Use this fo...
using HangoutsDbLibrary.Model; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Text; namespace HangoutsDbLibrary.Data { public class HangoutsContext : DbContext { public HangoutsContext(DbContextOptions<HangoutsContext> options) : base(options) ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Extension_Methods_Delegates_Lambda_LINQ { /// <summary> /// Problem 2. IEnumerable extensions /// Implement a set of extension methods for IEnumerable<T> that implement the following group functions: sum, produ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class GUIscript : MonoBehaviour { private bool showBar; private float showStamp; private bool takingDamage; public float fadeDelay; public float xSize; public float ySize; public Texture image; public float xOffset; public...
using System.ComponentModel.DataAnnotations; using Whale.DAL.Models; namespace Whale.Shared.Models { public class UserModel { [Required] public string DisplayName { get; set; } public string PhotoUrl { get; set; } public LinkTypeEnum LinkType { get; set; } [Required] ...
// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ===========================...
using UnityEngine; public class Arrow : MonoBehaviour { private GameObject lightPrefab; private GameObject light; #region Unity lifecycle private void Awake() { lightPrefab = Resources.Load<GameObject>("ArrowLight"); ArchTorso.Shoot += this.Shoot; Light.AddLight += Arrow_OnAddLi...
using System.Collections.Generic; using System.Linq; namespace RedLine.Models.WMI { public class WmiProcessQuery : WmiQueryBase { private static readonly string[] COLUMN_NAMES = new string[5] { "CommandLine", "Name", "ExecutablePath", "SIDType", "ParentProcessId" }; public Wmi...
using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Heresy { public static class TaskExtensions { // TODO : add other methods that tak cancellation tokens? // *Functor* Map public static async Task<B> Select...
namespace FundManagerDashboard.Core.Model { public class Stock { public StockType Type { get; set; } public decimal Price { get; set; } public int Quantity { get; set; } public long Id { get; set; } } }
using System; namespace NetSiege.Api.Data { /// <summary> /// Record storing the summary statistics for the entire test. /// </summary> public class Statistics { #region Properties /// <summary> /// The number of test hits conducted. /// </summary> public int Requests; /// <summary> /// The total ...
using System; using Glimpse.Agent; using Glimpse.Server; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.Extensions.DependencyInjection; namespace Glimpse.AgentServer.Dnx.Sample { public class Startup { public Startup() { Console.ForegroundColor = Co...
using cryptoprime; using main_tests; using permutationsTest; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Text; using System.IO; using System.Security.AccessControl; namespace Test_BytesBuild...
using DevExpress.XtraLayout.Localization; namespace TLF.Framework.ControlLocalization { /// <summary> /// Layout Control Library를 한국어로 설정합니다. /// </summary> public class KoreanLayoutLocalizer : DevExpress.XtraLayout.Localization.LayoutLocalizer { #region :: 생성자 :: /// <summary> ...
using System; using System.Text; using System.Collections.Generic; using Microsoft.VisualStudio.TestTools.UnitTesting; using Ninject; using System.Diagnostics; using Webcorp.Business; using Webcorp.Dal; using Webcorp.Model; using Webcorp.Controller; using System.Threading.Tasks; namespace Webcorp.erp.tests { /// ...
using System.Text; using System; using System.Collections.Generic; using Newtonsoft.Json.Converters; using Newtonsoft.Json; using System.Net.Http; using System.Drawing; using System.Collections.ObjectModel; using System.Xml; using System.ComponentModel; using System.Reflection; namespace LinnworksAPI { public static ...
namespace Mutagen.Bethesda.FormKeys.SkyrimSE { public class AnimatedArmoury { public class Keyword { private static readonly ModKey AnimatedArmoury = ModKey.FromNameAndExtension("NewArmoury.esp"); public static readonly FormLink<IKeywordCommonGetter> WeapTypeCestus = An...
using System.Collections.Generic; using System.Linq; using System.Security.Claims; namespace CarWash.PWA.Extensions { /// <summary> /// Extension class to User.Claims /// </summary> public static class ClaimsExtension { /// <summary> /// Checks whether user is admin /// usa...
using GetLabourManager.Models; using System; using System.Collections.Generic; using System.Data.Entity.ModelConfiguration; using System.Linq; using System.Web; namespace GetLabourManager.Configuration { public class FieldContainersTypeConfiguration:EntityTypeConfiguration<FieldContainersType> { publi...
using System; using System.Collections.Generic; using System.Reflection; using Xunit.IocExtentions.Resolvers; using Xunit.Sdk; namespace Xunit.IocExtentions.Attributes { public class AutofacDataAttribute : DataAttribute { private readonly Type _typeToResolve; private readonly object[] _data; ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Parser.main.BotClasses { public class RgDescriptions { public string appid { get; set; } public string classid { get; set; } public string appinstanceidid { get...
using System.ComponentModel.DataAnnotations.Schema; using Microsoft.AspNetCore.Identity; namespace AuthProject.Identities { public sealed class CustomIdentityUser : IdentityUser { public CustomIdentityUser() { PasswordHashEntity = string.Empty; } public CustomIdenti...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Planning.AdvandcedProjectionActionSelection.PrivacyLeakageCalculation { class TraceVariable { public int agentID { get; set; } public int varID { get; set; } pu...
using System; using System.Data; using System.Collections.Generic; using System.Text; using CGCN.Framework; using Npgsql; using NpgsqlTypes; using CGCN.DataAccess; using PhieuNhapKho.DataAccess; using HoaDonDataAccess.BusinesLogic; namespace PhieuNhapKho.BusinesLogic { /// <summary> /// Mô tả thông tin cho bản...
using System; using System.Text; using LePapeoGenNHibernate.CEN.LePapeo; using NHibernate; using NHibernate.Cfg; using NHibernate.Criterion; using NHibernate.Exceptions; using LePapeoGenNHibernate.EN.LePapeo; using LePapeoGenNHibernate.Exceptions; /* * Clase HorarioDia: * */ namespace LePapeoGenNHibernate.CAD.Le...
namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter03.Listing03_37 { public class Program { public static void Main() {} } }
using System.Data.Entity; using System.Security.Claims; using System.Threading.Tasks; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.EntityFramework; using CIS420Redux.Mapping; namespace CIS420Redux.Models { // You can add profile data for the user by adding more properties to your Appl...
using Publicon.Core.Entities.Concrete; namespace Publicon.Core.Repositories.Abstract { public interface INotificationRepository : IGenericRepository<Notification>, IRepository { } }
using System; namespace YongHongSoft.YueChi { /// <summary> /// 代理人 /// </summary> public class DLRClass { /// <summary> /// 代理人姓名 /// </summary> public string DLRXM { get; set; } /// <summary> ///证件种类 /// </summary> public string ZJZ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Matikkapeli { static class Program { //public static string databaseFile = @"C:\Users\skype\source\repos\Matikkapeli\Matikkap...
// Accord Imaging Library // The Accord.NET Framework // http://accord-framework.net // // Copyright © César Souza, 2009-2015 // cesarsouza at gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by ...
using DapperDB.CodeGen.Base; using System; using System.ComponentModel.DataAnnotations; namespace DapperDB.Dal.Entities { public partial class SYS_FileDownloadLog : BaseModel { /// <summary> /// /// </summary> [Display(Name = "")] public Int32 ID { get; set; } /// <summary> /// /// </summary> ...
using System; using System.Collections.Generic; using CallCenter.Common.Entities; using CallCenterRepository.Controllers; namespace CallCenter.Client.Communication { public class CustomerController : IEntityController<ICustomer> { private ICustomerController controller; public Cust...
using ZJUTimetable.Common; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.Graphics.Display; using Windows.UI.ViewManagement; using Windows.UI.Xaml; usi...
using Owin; using SimpleInjector; using System.Web.Http; using System; using Microsoft.Owin.Security.OAuth; using Microsoft.Owin; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using SimpleInjector.Integration.WebApi; using api_baixo_acoplamento.Seguranca; using api_baixo_acoplamento.Ioc; [assembly: Owin...