text
stringlengths
13
6.01M
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TimerDisplay { public class DisplayTimeInText { int hour = 0; int minutes = 0; DateTime time = DateTime.Now; private readonly ConvertTime convertDisplay...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using Microsoft.Phone.Cont...
// Copyright (C) 2019 Kazuhiro Fujieda <fujieda@users.osdn.me> // // 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 re...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Shooter { class Key : IDrawable, IInteractable, ITileSpecial { bool _drawn; public Key() { _drawn = false; } public void Draw(int x, int y) { if (!_drawn) { _drawn = true; ...
using Frontend.Core.Converting.Operations.CopyMod; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Frontend.Core.Tests.Converting { [TestClass] public class SaveGameNameTranslatorTest : UnitTestBase { private SaveGameNameTranslator translator; protected override vo...
using System; namespace OCP.Files { /** * Exception for invalid path * @since 6.0.0 */ class InvalidPathException : Exception {} }
using System; namespace lauthai_api.Models { public class Feedback { public int Id { get; set; } public string Name { get; set; } public DateTime DayCreated { get; set; } public string ContactEmail { get; set; } public string FeedbackTxt { get; set; } public int...
using Microsoft.Xna.Framework; namespace cancerTIC { class RectangleF { public float X; public float Y; public float Width; public float Height; public RectangleF(float x, float y, float width, float height) { X = x; Y = y; W...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using AppactsPlugin.Data.Model; using AppactsPlugin.Data.Model.Enum; using System.Reflection; namespace AppactsPlugin.Interface { public interface IAnalytics { /// <summary> /// Starts the specified assembly....
using System; namespace GildedRose.Console { public class Item { public string Name { get; set; } public int SellIn { get; set; } public int Quality { get; set; } } public static class ItemExtension { public static String Stringify(this Item item) { ...
using CustomerManagement.Application.DTOs; using System.Threading.Tasks; namespace CustomerManagement.Application.Interfaces { public interface ICepService { Task<CepDTO.Retorno> ObterCep(CepDTO.Envio dto); } }
using System; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Serialization; namespace OptionsExampleApp.Services { public class Presenter: IPresenter { private readonly JsonSerializerSettings _settings; public Presenter() { _settings = new...
using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; namespace BDProblems { public partial class BDProblemsContext : DbContext { public BDProblemsContext() { } public BDProblemsContext(DbContextOptions<BDProblemsContext> options) ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Rateit.Events { //By Johann public class LoginEvent { public Models.User LoggedInUser { get; set; } public LoginEvent(Models.User loggedInUser) { ...
using System.Collections.Generic; using ActivityTracker.Data; using ActivityTracker.Dtos; using ActivityTracker.Models; using AutoMapper; using Microsoft.AspNetCore.JsonPatch; using Microsoft.AspNetCore.Mvc; namespace ActivityTracker.Controllers { [Route("api/activityTrackers")] [ApiController] public class Act...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ws2008.MODEL { /// <summary> /// 用户留言实体类 /// </summary> public class GuestBookMODEL { public int GuestBookID { get; set; } public int UserID { get; set; } public st...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Xunit; namespace Microsoft.EntityFrameworkCore.Query { public abstract class TPTGearsOfWarQueryRelationalTestB...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TranslateToCyrillic { /************************************************************************************************ |a| А а |a| |b| Б б |b| ...
 using System.Collections.Generic; using System; using System.Text; using BrainDuelsLib.utils.pic; namespace BrainDuelsLib.utils.pic { public abstract class IImage { public abstract void SetPixel(int i, int j, int pixel); public abstract int GetPixel(int i, int j); public abstract in...
using System; using System.Collections.Generic; using System.Text; namespace Dziedziczenie { class PilkachReczny : Piłkarz { public PilkachReczny(string imie_, string nazwisko_, string dataUrodzenia_, string pozycja_, string klub_) : base(imie_, nazwisko_, dataUrodzenia_) { ...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace fes.Models { public class ClaimFile { [Key] public int FileID { get; set; } [Required] public string Filename { get; set; } ...
/* Task 9. Create a List<Student> with sample students. Select only the students that are from group number 2. * Use LINQ query. Order the students by FirstName. */ /* Task 10. Implement the previous using the same query expressed with extension methods. */ /* Task 11. Extract all students that have email in abv.b...
using Microsoft.VisualBasic; using System; namespace CommonFrameWork { public class Validador { private static string[] CPF = { "11111111111", "22222222222", "33333333333", "44444444444", "55555555555", "66666666666", "77777777777", "88...
using System; namespace BubbleSort { class Program { private static int[] intList = new int[] { 6, 5, 3, 1, 8, 7, 2, 4 }; private static int basicLoops = 0; private static int optimizedLoops = 0; static void Main() { RunUnoptimized(); ...
using System; namespace KRF.Core.Entities.Master { public class Vendor { public int ID { get; set; } public string VendorName { get; set; } public string ContactName { get; set; } public string VendorAddress { get; set; } public string Phone { get; set; } public...
namespace ProConstructionsManagment.Core.Enums { public enum EmployeeStatus { WaitingForHire, Hired } }
// // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for full license information. // #region Usings using System; using System.Globalization; using DotNetNuke.Entities.Users; using DotNetNuke.Services.Localization; #endregion namespace...
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using UserManagement.DAL; using UserManagement.Model; using UserManagement.Models; using UserManagement.Repository; using System.Reflection; using System.Resour...
using System; using System.Collections.Generic; using System.Linq; using NetCode.Util; using NetCode.SyncPool; using NetCode.Connection; namespace NetCode.Payloads { [EnumeratePayload] public class PoolEventPayload : Payload { public override bool AcknowledgementRequired { get { retu...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using System.Xml; using System.Xml.Linq; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace _3.LINQ_to_JSON { class Program { ...
using System; using System.Diagnostics; namespace CoreEngine { [Conditional("UNITY_EDITOR")] [Conditional("PRESERVE_ATTRIBUTES")] [AttributeUsage(AttributeTargets.Field)] public class ReorderableAttribute : Attribute { } }
using UnityEngine; using System.Collections; public class UIGotTrophy : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void Update () { } public void OnNext() { //CanvasScript cv = SceneManager.Instance.GetCanvasByID...
using bank_account_ddd_studies.domain.command; using bank_account_ddd_studies.domain.repository; using bank_account_ddd_studies.domain.service; namespace bank_account_ddd_studies.domain.commandHandler { public class TransferHandler : IHandler { private readonly IAccountRepository _accountRepository; ...
using System; using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using esstp.Models.ViewModels; namespace esstp.Models.Services { /// <summary> /// The 'Subject' abstract class /// </summary> public abstract class Subject { private List<Observer> _obs...
using console; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Infra; namespace ConsoleTestProj { /// <summary> ///This is a test class for _063_SwapNodesInPairsTest and is intended ///to contain all _063_SwapNodesInPairsTest Unit Tests ///</summary> [TestClass()] pub...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Luxand; using System.Drawing; using System.IO; using System.Diagnostics; using LogUrFace.FaceRec.Interfaces; namespace LogUrFace.FaceRec.Services { public class FaceRecTrainer : ITrainer {...
/********************************************************** CoxlinCore - Copyright (c) 2023 Lindsay Cox / MIT License ****************...
using HtmlAgilityPack; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using System; using System.IO; using WebSpider.Services; namespace WebSpider.Insfrastracture.Diextensions { public static class Diextension { public sta...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class GameManager : MonoBehaviour { [SerializeField] private Slider healthBarSlider; [SerializeField] private GameObject gameOverScreen; [SerializeField] private Te...
namespace Plus.Communication.Packets.Outgoing.Rooms.Engine { internal class SlideObjectBundleComposer : MessageComposer { public int FromX { get; } public int FromY { get; } public double FromZ { get; } public int ToX { get; } public int ToY { get; } pub...
using Library.Domain.Abstract; using Library.Domain.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Library.Domain.Concrete { public class EFAccountRepository : IAccountRepository { private EFDbContext ...
using DAL.Models; using System; using System.Collections.Generic; using System.Text; namespace DAL.RoomsData { public interface IRoomDataProvider { long SaveRoom(Room room); List<Room> GetRooms(long? userId,long? roomId); void AddUsersToRoom(long roomId, List<long> userIdList); } ...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="LogEntry.cs" company="CGI"> // Copyright (c) CGI. All rights reserved. // </copyright> // ---------------------------------------------------------------------------------------...
using UnityEngine; using UnityEngine.UI; using System.Collections; public class PlayerController : MonoBehaviour { public GameObject shoeGripUI; public GameObject shoeHint; Vector3 lastLooking; float shoeGrip; // Use this for initialization void Start() { shoeGrip = 0f; las...
using System; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace MonoGame.Extended { public static class RenderTarget2DExtensions { public static IDisposable BeginDraw(this RenderTarget2D renderTarget, GraphicsDevice graphicsDevice, Color backgroundColor) { ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xamarin.Forms; using System.IO; using System.Collections.ObjectModel; namespace App1 { public partial class MainPage : ContentPage { private IConvertImage convertImg; ...
using System; using System.Collections.Generic; namespace Minecraft4Dev.Web.ViewModels { public class LoserBoardViewModel { public LoserBoardViewModel() { this.TopLosers = new List<LoserViewModel>(); this.Losers = new List<LoserViewModel>(); } public IL...
using Microsoft.EntityFrameworkCore; using PDB.Models; namespace PDB { public class ApplicationContext : DbContext { public ApplicationContext(DbContextOptions options) : base(options) { } public DbSet<MapPoint> MapPoints { get; set; } public DbSet<Hero> He...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using ESRI.ArcGIS.esriSystem; using ESRI.ArcGIS.Controls; using ESRI.ArcGIS.Carto; using ESRI.ArcGIS.Display; using ESRI.ArcGIS.Geometry; using ESRI.ArcGIS.GlobeCore; using ESRI.ArcGIS.Geodatabase; using E...
using System; using Foundation; namespace Plugin.HttpTransferTasks { public interface IIosHttpTask : IHttpTask { void SetStatus(TaskStatus status); void SetDownloadComplete(string tempLocation); void SetResumeOffset(long resumeOffset, long expectedTotalBytes); void SetData(lon...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace EmployeeMgmt.WebApi.Models { public class EmployeeModelCreate { [Required(ErrorMessage ="Informe o Nome.")] public string Name { get; set; } [Req...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class MovingPlatformEndpoint : MonoBehaviour { public GameObject targetPlatform; private void OnTriggerEnter2D(Collider2D collision) { if (collision.gameObject.tag == "MovingPlatform") { ...
 #region usings using System; using System.ComponentModel; using System.Data.Linq; using System.Data.Linq.Mapping; #endregion namespace Zengo.WP8.FAS.Models { [Table] public class ContinentRecord : INotifyPropertyChanged, INotifyPropertyChanging { // Define ID: private field, public property, a...
using cn.bmob.io; namespace cn.bmob.response { /// <summary> /// 没有具体内容的返回值 /// </summary> public class EmptyCallbackData : BmobObject, IBmobWritable { } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _07.PrintReversed { class PrintReversed { static void PrintNumber(decimal num) { string str = num.ToString(); for (int i = str.Length - 1; i >= 0; i--) { ...
using System.Reflection; using Microsoft.Extensions.DependencyInjection; using PrimeNumbers.Application.Common.Behaviours; using MediatR; namespace PrimeNumbers.Application { public static class DependencyInjection { public static IServiceCollection RegisterApplicationDependencies(this IServiceCollect...
/**DeckOutOfRangeException.cs * * Description: This is an exception class for managing when a deck is out of range * * @author Matthew Cormier, Kyle Warner, Chris Hobday * @version 1.0 * @since 03/1/2016 */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using Syste...
using Contoso.Parameters.Expressions; using LogicBuilder.Attributes; using System; namespace Contoso.Forms.Parameters { public class MultiSelectTemplateParameters { public MultiSelectTemplateParameters ( [Comments("XAML template for the control.")] [NameValue(AttributeNames.DEFAULTVALUE, "MultiSelec...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using System.Diagnostics; using MyMusicWebsite.Repositories; using MyMusicWebsite.Models; namespace MyMusicWebsite.MyMusicWebsite.Controller { [ApiCo...
namespace RealEstate.Services.Data { using System; using System.Linq; using Contracts; using Common.Constants; using RealEstate.Data.Models; using RealEstate.Data.Repositories; public class RealEstateService : IRealEstateService { private readonly IRepository<RealEstate> realE...
using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.Linq; using System.Net; using System.Web; using System.Web.Mvc; using SIGA_Model; namespace SIGA_WebApplication.Controllers { public class ReciboController : Controller { private SIGAEntities db =...
using System; using System.Text; using Xamarin.Forms; using System.Net; using System.Net.Sockets; namespace ClickIn { public partial class MainPage : ContentPage { public MainPage() { InitializeComponent(); } void ButtonAClicked(System.Object sender, Sy...
using Portal.helper; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Configuration; namespace Portal.repo { public class usersRepo { protected PN_Entities DBContext; public bool Authentication(string username, string password) { ...
using System.Collections.Generic; namespace Enrollment.Forms.View.Common { public class ColumnSettingsView { public string Field { get; set; } public string Title { get; set; } public string Type { get; set; } public bool? Groupable { get; set; } public int? Width { get...
using System; namespace SplitPdf.Engine { public class RunnerProgressEventArgs : EventArgs { public string ProgressMessage { get; set; } } }
using System.Reflection; using System.Web; using System.Web.Mvc; using log4net; namespace NBTM { public class CustomErrorAttribute : HandleErrorAttribute { private static readonly ILog Logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); //private static read...
using System.Collections.Generic; using System.Linq; using MadBugAPI.Data.Entities; using Microsoft.EntityFrameworkCore; namespace MadBugAPI.Data.Repositories { public class BugRepository: BaseRepository<Bug> { public BugRepository(MadBugContext context):base(context) { } ...
using System; using System.Collections.Generic; using System.Text; namespace WUIShared { public enum EventTypes { OnLoad, OnUpdate, OnCollisionStay, OnStringMessage } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Millo.Models { public class FriendRelation { public int Id { get; set; } public bool AreFriends { get; set; } public string UserId1 { get; set; } public string UserId2 { get; se...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Drawing; using System.Linq; using System.Net.Mail; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Kino_app { public partial class Form1 ...
using System; namespace Calisma { class Program { static void Main(string[] args) { double dolarDun = 7.55; double dolarBugun = 7.45; string deger; deger = (dolarDun < dolarBugun) ? "Artış oku." : "Azalış oku."; Console.WriteLine(d...
using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.Data.Entity.Infrastructure; using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using System.Web.Http; using System.Web.Http.Description; using ClassLibrary.DAL; using ClassLi...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AddressBook.Models; using AddressBook.ViewModels; using Xamarin.Forms; namespace AddressBook.Pages { public partial class AllContacts : ContentPage { public AllContacts() ...
using ALM.Empresa.Entidades; using ALM.Empresa.Negocio; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace ALM.Empresa.Interfaz.Controllers { public class DeudorController : Controller { /* [CustomAuthorize(AccessLevel = Informa...
using System; using System.Collections.Generic; using Jypeli; using TowerDefence; namespace TowerDefenceGame { public class SpawnEnemyArgs : EventArgs { public Enemy enemyArg { get; set; } } ///<summary> ///Handles everything level related, such as enemy spawning. ///</summary> cl...
using System; using System.IO; using System.Net; namespace TestDataManager { public class InternetFileDownloader { private const string TMP_DATA_PATH = "KelpNet/TestData/"; static readonly string TmpFolderPath = Path.Combine(Path.GetTempPath(), TMP_DATA_PATH); public static string Donw...
namespace DefaultNamespace { public class GoogleBook { public string ISBN { get; set; } public string Title { get; set; } public string Publisher { get; set; } public string Link { get; set; } } }
using System; using System.Threading; namespace Pong { class Program { class Score { public int[] player_score = new int[2]; public Score() { player_score[0] = 0; player_score[1] = 0; } } static Sco...
using Npgsql; using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; namespace apiInovaPP.AcessoDados { public class PostgreSql { private string strcon = "Server=pgsql.99codgo.com.br;Port=5432;User Id=99codgo1;Password=inovapp@123;Database=99codgo1;"; ...
using System; using System.Collections.Generic; using System.Text; using DnDPlayerCompanion.Enums; namespace DnDPlayerCompanion { public abstract class BaseCharacter { #region Base Character Properties #region Names public string CharacterName { get; set; } public string Player...
using AlienEngine.Core.Graphics.DevIL; using AlienEngine.Core.Graphics.DevIL.Unmanaged; using AlienEngine.Core.Resources; using System; namespace AlienEngine.Core.Graphics { /// <summary> /// Manage cursors used in a <see cref="GameWindow"/> /// </summary> public class Cursor : IDisposable { ...
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Net; using System.Text; using System.IO; using JoveZhao.Framework.Expand; namespace JoveZhao.Framework.HttpServers { public class HttpRequest { public HttpRequest(HttpListenerRequest r...
// // 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; using System.Net.Http; using System.Web.Http; using System.Web.Http.Hosting; using DotNetNuke.Entities.Modules; using DotNetNuke.Entities.Mo...
using System; using System.Collections.Generic; using System.Text; using OC; namespace OCP.Federation.Exceptions { /** * Class ProviderDoesNotExistsException * * @package OCP\Federation\Exceptions * * @since 14.0.0 */ public class ProviderDoesNotExistsException : HintException { /** * ProviderDoes...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Openmiracle.BLL { class DailySalaryRegisterBll { } }
using System; using System.Collections.Generic; using TestGame.Actions; using TestGame.Characters; using TestGame.Utils; namespace TestGame { /// <summary> /// Class implements the general logic of the game. /// </summary> public class Game { private List<Character> characters...
using System; using System.Collections.Generic; using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Fra...
using ApiRest2.Models; using ApiRest2.Repository; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace ApiRest2.Controllers { public class PacienteController : ApiController { //objeto de lectura para acceder al re...
using cosmetic_hub__e_shopping_system_.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; namespace cosmetic_hub__e_shopping_system_.ViewModels { public class ShoppingCartViewModel { public Shoppi...
using Kers.Models.Abstract; using Kers.Models.Contexts; using Kers.Models.Entities.KERScore; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Kers.Controllers.Reports.ViewComponents { publ...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace IMDB.Api.Entities { public class PlotKeyword : BaseEntity { [Required] public string Title { get; set; } public IList<MoviePlotKeyword> MoviePlotKeywords { get; set; } = new List<Movi...
using System; using System.Collections.Generic; using System.Text; namespace PointOfSalesV2.Common { public class Enums { public enum BillingStates { Billed = 'B', Nulled = 'N', Paid = 'P', Quoted = 'Q', Converted = 'C' } ...
namespace Diablo3DotNetAPI.Model.Enums { enum Locals { en_GB, de_DE, es_ES, fr_FR, it_IT, pl_PL, pt_PT, ru_RU } }
 using System; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; namespace eForm.EFlight.Dtos { public class CreateOrEditPurposeDto : EntityDto<int?> { [Required] public string Name { get; set; } } }
// // Copyright 2015, 2016 Carbonfrost Systems, Inc. (http://carbonfrost.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 // // Un...
using Microsoft.EntityFrameworkCore; namespace Persistence { public class AppDbContextFactory : DesignTimeDbContextFactoryBase<AppDbContext> { /// <summary> /// CreateNewInstance /// </summary> /// <param name="options"></param> /// <returns></returns> protected over...
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.Med...
//------------------------------------------------------------------------------ // The contents of this file are subject to the nopCommerce Public License Version 1.0 ("License"); you may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.nopCommerce.com/Lic...
 using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Text; using System.ComponentModel; using System.Web; using System.Web.Caching; using Karkas.Web.Helpers.HelperClasses; using Karkas.Core.DataUtil.BaseClasses; using Karkas.Ornek.TypeLibrary.Ornekler...