master
editor 1 month ago
commit e68d4318c2

@ -0,0 +1,126 @@
WINFORM游船售票系统
一、源码描述
Winform游船售票系统
环境VS2022 Winform sql2019
二、功能介绍
1、系统管理
基本信息管理
导游信息管理
旅行社资料管理
旅行社分类管理
门票管理
操作员管理
操作员管理
角色权限管理
更换操作员
修改密码
退出
2、系统管理
3、前台开票
4、报表管理
5、结账管理
系统日结
日结记录
6、退单管理
7、订单查询
8、ManagerReport
数据库使用DB_51Aspx下的sql2019导出脚本中的TicketSystem.sql执行该脚本。
ldf文件生成后很大。
三、注意事项
1、在项目App.config修改数据库连接字符串执行TicketSystem.sql脚本。
2、管理员账号与密码admin 51aspx 。
3、ctrl+F5运行即可。
作者: coderbest
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/TheCruiseShipSellsTickets
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
using System.Drawing;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using ZXing;
using ZXing.Common;
using ZXing.QrCode;
namespace Common
{
public class BarCode
{
/// <summary>
/// 生成条形码
/// </summary>
/// <param name="picBox1"></param>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
public class Bookmarks
{
private string _Qr_mark;
private string _Agent_mark;
private string _AgentPhone_mark;
private string _Guide_mark;
private string _CreatedTime_mark;

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4E8F41B9-B6A2-407C-8536-B5A7930FCC5D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Common</RootNamespace>
<AssemblyName>Common</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
//using Word = Microsoft.Office.Interop.Word;
using System.Reflection;
using System.Data;
namespace ExportTest
{
/// <summary>
/// 导出word
/// </summary>
public class ExportWord
{
/// <summary>

@ -0,0 +1,15 @@
using System.Drawing;
using System.Drawing.Printing;
using System.Windows.Forms;
namespace Common
{
public class DocumentBase : PrintDocument
{
public Font Font = new Font("Verdana", 10, GraphicsUnit.Point);
/// <summary>
/// 预览打印
/// </summary>
/// <returns></returns>
public DialogResult showPrintPreviewDialog()

@ -0,0 +1,15 @@
using System;
namespace Common
{
public class GetOperator
{
public static int OperatorID;
public static string OperatorName;
public static int RoleID;
}
public class Price
{
public static decimal PriceOne;
public static decimal PriceTwo;
public static decimal PriceThree;

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Printing;
using System.Windows.Forms;
public class GridPrinter
{
// the grid to print
private DataGridView dataGridView;
// the PrintDocument
private PrintDocument printDocument;
// center printout?

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
public class ImageDocument : DocumentBase
{
private Image _Image;
public Image Image
{

@ -0,0 +1,15 @@
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.Drawing.Printing;
using System.Windows.Forms;
using System.Drawing;
namespace Common
{
public class PrintDataGridView
{
static DataGridView dgv;
static string titleName = ""; //标题名称

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using ZXing;
using ZXing.Common;
using ZXing.QrCode;
namespace Common
{
public class PrintDoc
{
/// <summary>
/// 生成二维码
/// </summary>

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Common")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Common")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using DataLibrary;
using System;
using System.Collections.Generic;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Windows.Forms;
namespace Common
{
public class PublicMethod
{
//private TicketSystemEntities tse = new TicketSystemEntities();
//加密
//构造一个对称算法
private SymmetricAlgorithm mCSP = new TripleDESCryptoServiceProvider();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Design;
using System.Text;
using System.Windows.Forms;
using System.Collections;
using System.Reflection;
using System.Runtime.InteropServices;
/// <summary>
/// DataGridView行合并.请对属性MergeColumnNames 赋值既可
/// </summary>

@ -0,0 +1,15 @@
partial class RowMergeView
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.OleDb;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using System.Text;
namespace Common
{
public class ToExcel
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</configSections>
<connectionStrings>
<add name="TicketSystemEntities" connectionString="metadata=res://*/TicketData.csdl|res://*/TicketData.ssdl|res://*/TicketData.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=E6KB7ZXFBJIOAJK\SQLEXPRESS;initial catalog=TicketSystem;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
</providers>
</entityFramework>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework</name>
</assembly>
<members>
<member name="T:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer">
<summary>
Serializes an <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> that conforms to the restrictions of a single
CSDL schema file to an XML writer. The model to be serialized must contain a single
<see cref="T:System.Data.Entity.Core.Metadata.Edm.EntityContainer"/> .
</summary>
</member>
<member name="M:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer.Serialize(System.Data.Entity.Core.Metadata.Edm.EdmModel,System.Xml.XmlWriter,System.String)">
<summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>zxing.presentation</name>
</assembly>
<members>
<member name="T:ZXing.Presentation.BarcodeReader">
<summary>
A smart class to decode the barcode inside a bitmap object which is derived from BitmapSource
</summary>
</member>
<member name="M:ZXing.Presentation.BarcodeReader.#ctor">
<summary>
Initializes a new instance of the <see cref="T:ZXing.Presentation.BarcodeReader"/> class.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>zxing</name>
</assembly>
<members>
<member name="T:ZXing.Aztec.Internal.AztecDetectorResult">
<summary>
Extends <see cref="T:ZXing.Common.DetectorResult" /> with more information specific to the Aztec format,
like the number of layers and whether it's compact.
</summary>
</member>
<member name="P:ZXing.Aztec.Internal.AztecDetectorResult.Compact">
<summary>
Gets a value indicating whether this Aztec code is compact.

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,15 @@
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\Common.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\Common.pdb
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\DataLibrary.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zxing.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zxing.presentation.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\EntityFramework.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\DataLibrary.pdb
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\DataLibrary.dll.config
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zxing.pdb
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zxing.xml
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zxing.presentation.pdb
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zxing.presentation.xml
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\EntityFramework.xml
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\bin\Debug\zh-Hans\EntityFramework.resources.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\Common\obj\Debug\Common.csproj.AssemblyReference.cache

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ZXing.Net" version="0.16.5" targetFramework="net45" requireReinstallation="true" />
</packages>

@ -0,0 +1 @@
{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\5\\20240524\\submit\\1\\TicketSystem-master\\TicketSystem-master\\DataLibrary","ProjectFileName":"DataLibrary.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Backs.cs"},{"SourceFile":"Checkouts.cs"},{"SourceFile":"Departments.cs"},{"SourceFile":"DepartmentsGuides.cs"},{"SourceFile":"DepartmentTypes.cs"},{"SourceFile":"Guides.cs"},{"SourceFile":"Operators.cs"},{"SourceFile":"Rights.cs"},{"SourceFile":"RoleRights.cs"},{"SourceFile":"Roles.cs"},{"SourceFile":"SaleRoport.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Sales.cs"},{"SourceFile":"TicketData.Context.cs"},{"SourceFile":"TicketData.cs"},{"SourceFile":"TicketData.Designer.cs"},{"SourceFile":"Tickets.cs"},{"SourceFile":"TicketTypes.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\5\\20240524\\submit\\1\\TicketSystem-master\\TicketSystem-master\\DataLibrary\\bin\\Debug\\DataLibrary.dll","OutputItemRelativePath":"DataLibrary.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\5\\20240524\\submit\\1\\TicketSystem-master\\TicketSystem-master\\DataLibrary\\bin\\Debug\\DataLibrary.pdb","OutputItemRelativePath":"DataLibrary.pdb"}],"CopyToOutputEntries":[]}

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Backs

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Checkouts

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B4291CE9-83C0-4629-854D-F138EFEABBE5}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>DataLibrary</RootNamespace>
<AssemblyName>DataLibrary</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class DepartmentTypes

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Departments

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class DepartmentsGuides

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Guides

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Operators

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过以下
// 特性集控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DataLibrary")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DataLibrary")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Rights

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class RoleRights

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Roles

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataLibrary
{
public class SaleRoport
{
}
}

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Sales

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;

@ -0,0 +1,10 @@
// 为模型“D:\projects\新建文件夹\TicketSystem\DataLibrary\TicketData.edmx”启用了 T4 代码生成。
// 要启用旧代码生成功能,请将“代码生成策略”设计器属性的值
// 更改为“旧的 ObjectContext”。当在设计器中打开该模型时此属性会出现在
// “属性”窗口中。
// 如果没有生成任何上下文和实体类,可能是因为您创建了空模型但是
// 尚未选择要使用的实体框架版本。要为您的模型生成一个上下文类和实体
// 类,请在设计器中打开该模型,右键单击设计器图面,然后
// 选择“从数据库更新模型...”、“从模型生成数据库...”或“添加代码生成
// 项...”。

@ -0,0 +1,9 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class TicketTypes

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class Tickets

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</configSections>
<connectionStrings>
<add name="TicketSystemEntities" connectionString="metadata=res://*/TicketData.csdl|res://*/TicketData.ssdl|res://*/TicketData.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=E6KB7ZXFBJIOAJK\SQLEXPRESS;initial catalog=TicketSystem;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
</providers>
</entityFramework>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework.SqlServer</name>
</assembly>
<members>
<member name="T:System.Data.Entity.SqlServer.IDbSpatialValue">
<summary>
Adapter interface to make working with instances of <see cref="T:System.Data.Entity.Spatial.DbGeometry"/> or <see cref="T:System.Data.Entity.Spatial.DbGeography"/> easier.
Implementing types wrap instances of DbGeography/DbGeometry and allow them to be consumed in a common way.
This interface is implemented by wrapping types for two reasons:
1. The DbGeography/DbGeometry classes cannot directly implement internal interfaces because their members are virtual (behavior is not guaranteed).
2. The wrapping types ensure that instances of IDbSpatialValue handle the <see cref="T:System.NotImplementedException"/>s thrown
by any unimplemented members of derived DbGeography/DbGeometry types that correspond to the properties and methods declared in the interface.
</summary>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework</name>
</assembly>
<members>
<member name="T:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer">
<summary>
Serializes an <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> that conforms to the restrictions of a single
CSDL schema file to an XML writer. The model to be serialized must contain a single
<see cref="T:System.Data.Entity.Core.Metadata.Edm.EntityContainer"/> .
</summary>
</member>
<member name="M:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer.Serialize(System.Data.Entity.Core.Metadata.Edm.EdmModel,System.Xml.XmlWriter,System.String)">
<summary>

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,14 @@
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\DataLibrary.dll.config
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\DataLibrary.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\DataLibrary.pdb
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\EntityFramework.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\EntityFramework.SqlServer.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\EntityFramework.xml
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\EntityFramework.SqlServer.xml
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\zh-Hans\EntityFramework.resources.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\bin\Debug\zh-Hans\EntityFramework.SqlServer.resources.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\obj\Debug\DataLibrary.csproj.AssemblyReference.cache
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\obj\Debug\DataLibrary.csproj.CoreCompileInputs.cache
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\obj\Debug\DataLibrary.csproj.CopyComplete
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\obj\Debug\DataLibrary.dll
C:\Users\coder\Desktop\2024Code\5\20240524\submit\1\TicketSystem-master\TicketSystem-master\DataLibrary\obj\Debug\DataLibrary.pdb

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="EntityFramework" version="6.0.0" targetFramework="net45" />
<package id="EntityFramework.zh-Hans" version="6.0.0" targetFramework="net45" />
</packages>

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataLibrary
{
using System;
using System.Collections.Generic;
public partial class sysdiagrams

File diff suppressed because one or more lines are too long

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="TicketSystem.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<connectionStrings>
<add name="TicketSystemEntities" connectionString="metadata=res://*/TicketData.csdl|res://*/TicketData.ssdl|res://*/TicketData.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=.;Initial Catalog=TicketSystem;User ID=sa;Password=51Aspx;multipleactiveresultsets=True;application name=EntityFramework&quot;" providerName="System.Data.EntityClient" />
<add name="TicketSystem.Properties.Settings.TicketSystemConnectionString" connectionString="Data Source=.;Initial Catalog=TicketSystem;User ID=sa;Password=51Aspx;MultipleActiveResultSets=True;Application Name=EntityFramework" providerName="System.Data.SqlClient" />
</connectionStrings>

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using ZXing;
using System.Linq;
namespace TicketSystem
{
public partial class Form1 : Form
{
public Form1()
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_Back
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using DataLibrary;
using System;
using System.Linq;
using System.Windows.Forms;
using Common;
using LinqKit;
using System.Collections;
using System.Collections.Generic;
namespace TicketSystem
{
public partial class Form_Back : Form
{
private TicketSystemEntities tse = new TicketSystemEntities();
private Guid _saleGuid;

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_Checkout
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using DataLibrary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using Common;
using System.Data.Entity.Infrastructure;
using System.Data.Entity;
using System.Data;
namespace TicketSystem
{
public partial class Form_Checkout : Form
{
private TicketSystemEntities tse = new TicketSystemEntities();

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_CheckoutLog
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Windows.Forms;
namespace TicketSystem
{
public partial class Form_CheckoutLog : Form
{
private TicketSystemEntities tse = new TicketSystemEntities();
public Form_CheckoutLog()

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_EditTicket
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using DataLibrary;
using System;
using System.Linq;
using System.Windows.Forms;
namespace TicketSystem
{
public partial class Form_EditTicket : Form
{
public Form_EditTicket()
{
InitializeComponent();
}
private TicketSystemEntities tse = new TicketSystemEntities();

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_GuideAdd
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
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 TicketSystem
{
public partial class Form_GuideAdd : Form

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_GuideUpdate
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
using System;
using System.Linq;
using System.Windows.Forms;
namespace TicketSystem
{
public partial class Form_GuideUpdate : Form
{
public Form_GuideUpdate()
{
InitializeComponent();
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_Login
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using DataLibrary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using Common;
namespace TicketSystem
{
public partial class Form_Login : Form
{
public Form_Login()
{
InitializeComponent();
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_Main
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using System;
using System.Windows.Forms;
using Common;
using System.Linq;
using DataLibrary;
namespace TicketSystem
{
public partial class Form_Main : Form
{
public Form_Main()
{
InitializeComponent();
}
private UC_Ticket ticket;

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_Manager
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
using LinqKit;
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 TicketSystem
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_ModifyPwd
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
using System;
using System.Linq;
using System.Windows.Forms;
namespace TicketSystem
{
public partial class Form_ModifyPwd : Form
{
public Form_ModifyPwd()
{
InitializeComponent();
}
private TicketSystemEntities tse = new TicketSystemEntities();

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_OperatorAdd
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
using System;
using System.Linq;
using System.Windows.Forms;
namespace TicketSystem
{
public partial class Form_OperatorAdd : Form
{
public Form_OperatorAdd()
{
InitializeComponent();
}
private TicketSystemEntities tse = new TicketSystemEntities();

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_OperatorUpdate
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using Common;
using DataLibrary;
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 TicketSystem
{
public partial class Form_OperatorUpdate : Form

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_PartPrint
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using System;
using System.Collections;
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 TicketSystem
{
public partial class Form_PartPrint : Form
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_RoleRightAdd
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

@ -0,0 +1,15 @@
using DataLibrary;
using System;
using System.Linq;
using System.Windows.Forms;
namespace TicketSystem
{
public partial class Form_RoleRightAdd : Form
{
public Form_RoleRightAdd()
{
InitializeComponent();
}
private TicketSystemEntities tse = new TicketSystemEntities();
private void btn_Save_Click(object sender, EventArgs e)

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
namespace TicketSystem
{
partial class Form_RoleRightUpdate
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save