├── .gitattributes ├── .gitignore ├── BLL ├── BLL.csproj ├── CustomerBLL.cs ├── Properties │ └── AssemblyInfo.cs └── TicketBLL.cs ├── DAL ├── CustomerDAL.cs ├── DAL.csproj ├── HallDAL.cs ├── MovieDAL.cs ├── Properties │ └── AssemblyInfo.cs ├── ScheduleDAL.cs └── TicketDAL.cs ├── Model ├── CinemaDbContext.cs ├── Customer.cs ├── Hall.cs ├── Model.csproj ├── Movie.cs ├── Properties │ └── AssemblyInfo.cs ├── Schedule.cs ├── Seat.cs └── Ticket.cs ├── MyCinema.sln ├── MyCinema ├── ClassDiagram1.cd ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PayForm.Designer.cs ├── PayForm.cs ├── PayForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.config ├── TicketForm.Designer.cs ├── TicketForm.cs ├── TicketForm.resx ├── UI.csproj ├── UserLoginForm.Designer.cs ├── UserLoginForm.cs ├── UserLoginForm.resx ├── UserRegisterForm.Designer.cs ├── UserRegisterForm.cs ├── UserRegisterForm.resx └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/.gitignore -------------------------------------------------------------------------------- /BLL/BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/BLL/BLL.csproj -------------------------------------------------------------------------------- /BLL/CustomerBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/BLL/CustomerBLL.cs -------------------------------------------------------------------------------- /BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BLL/TicketBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/BLL/TicketBLL.cs -------------------------------------------------------------------------------- /DAL/CustomerDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/CustomerDAL.cs -------------------------------------------------------------------------------- /DAL/DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/DAL.csproj -------------------------------------------------------------------------------- /DAL/HallDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/HallDAL.cs -------------------------------------------------------------------------------- /DAL/MovieDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/MovieDAL.cs -------------------------------------------------------------------------------- /DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DAL/ScheduleDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/ScheduleDAL.cs -------------------------------------------------------------------------------- /DAL/TicketDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/DAL/TicketDAL.cs -------------------------------------------------------------------------------- /Model/CinemaDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/CinemaDbContext.cs -------------------------------------------------------------------------------- /Model/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Customer.cs -------------------------------------------------------------------------------- /Model/Hall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Hall.cs -------------------------------------------------------------------------------- /Model/Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Model.csproj -------------------------------------------------------------------------------- /Model/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Movie.cs -------------------------------------------------------------------------------- /Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Model/Schedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Schedule.cs -------------------------------------------------------------------------------- /Model/Seat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Seat.cs -------------------------------------------------------------------------------- /Model/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/Model/Ticket.cs -------------------------------------------------------------------------------- /MyCinema.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema.sln -------------------------------------------------------------------------------- /MyCinema/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/ClassDiagram1.cd -------------------------------------------------------------------------------- /MyCinema/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/MainForm.Designer.cs -------------------------------------------------------------------------------- /MyCinema/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/MainForm.cs -------------------------------------------------------------------------------- /MyCinema/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/MainForm.resx -------------------------------------------------------------------------------- /MyCinema/PayForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/PayForm.Designer.cs -------------------------------------------------------------------------------- /MyCinema/PayForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/PayForm.cs -------------------------------------------------------------------------------- /MyCinema/PayForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/PayForm.resx -------------------------------------------------------------------------------- /MyCinema/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Program.cs -------------------------------------------------------------------------------- /MyCinema/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MyCinema/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MyCinema/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Properties/Resources.resx -------------------------------------------------------------------------------- /MyCinema/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MyCinema/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Properties/Settings.settings -------------------------------------------------------------------------------- /MyCinema/Properties/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/Properties/app.config -------------------------------------------------------------------------------- /MyCinema/TicketForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/TicketForm.Designer.cs -------------------------------------------------------------------------------- /MyCinema/TicketForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/TicketForm.cs -------------------------------------------------------------------------------- /MyCinema/TicketForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/TicketForm.resx -------------------------------------------------------------------------------- /MyCinema/UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UI.csproj -------------------------------------------------------------------------------- /MyCinema/UserLoginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UserLoginForm.Designer.cs -------------------------------------------------------------------------------- /MyCinema/UserLoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UserLoginForm.cs -------------------------------------------------------------------------------- /MyCinema/UserLoginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UserLoginForm.resx -------------------------------------------------------------------------------- /MyCinema/UserRegisterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UserRegisterForm.Designer.cs -------------------------------------------------------------------------------- /MyCinema/UserRegisterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UserRegisterForm.cs -------------------------------------------------------------------------------- /MyCinema/UserRegisterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/UserRegisterForm.resx -------------------------------------------------------------------------------- /MyCinema/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/MyCinema/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengfaheng/CinemaTickets/HEAD/README.md --------------------------------------------------------------------------------