изменила и добавила модели данных - убрала общий айдишник
This commit is contained in:
parent
41c8d1ed12
commit
b681091801
39
BeautySalon/BeautySalon/FormMain.Designer.cs
generated
39
BeautySalon/BeautySalon/FormMain.Designer.cs
generated
@ -28,12 +28,43 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
this.components = new System.ComponentModel.Container();
|
comboBoxService = new ComboBox();
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
label1 = new Label();
|
||||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
SuspendLayout();
|
||||||
this.Text = "FormMain";
|
//
|
||||||
|
// comboBoxService
|
||||||
|
//
|
||||||
|
comboBoxService.FormattingEnabled = true;
|
||||||
|
comboBoxService.Location = new Point(310, 209);
|
||||||
|
comboBoxService.Name = "comboBoxService";
|
||||||
|
comboBoxService.Size = new Size(227, 28);
|
||||||
|
comboBoxService.TabIndex = 0;
|
||||||
|
//
|
||||||
|
// label1
|
||||||
|
//
|
||||||
|
label1.AutoSize = true;
|
||||||
|
label1.Location = new Point(350, 253);
|
||||||
|
label1.Name = "label1";
|
||||||
|
label1.Size = new Size(124, 20);
|
||||||
|
label1.TabIndex = 1;
|
||||||
|
label1.Text = "Выберите услугу";
|
||||||
|
//
|
||||||
|
// FormMain
|
||||||
|
//
|
||||||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
|
ClientSize = new Size(817, 456);
|
||||||
|
Controls.Add(label1);
|
||||||
|
Controls.Add(comboBoxService);
|
||||||
|
Name = "FormMain";
|
||||||
|
Text = "FormMain";
|
||||||
|
ResumeLayout(false);
|
||||||
|
PerformLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
private ComboBox comboBoxService;
|
||||||
|
private Label label1;
|
||||||
}
|
}
|
||||||
}
|
}
|
15
BeautySalon/BeautySalonDBModels/ICheque.cs
Normal file
15
BeautySalon/BeautySalonDBModels/ICheque.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BeautySalonDBModels
|
||||||
|
{
|
||||||
|
public interface ICheque
|
||||||
|
{
|
||||||
|
int ChequeId { get; }
|
||||||
|
int ClientId { get; }
|
||||||
|
string ReceptionId { get; }
|
||||||
|
}
|
||||||
|
}
|
15
BeautySalon/BeautySalonDBModels/IClient.cs
Normal file
15
BeautySalon/BeautySalonDBModels/IClient.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BeautySalonDBModels
|
||||||
|
{
|
||||||
|
public interface IClient
|
||||||
|
{
|
||||||
|
int ClientId { get; }
|
||||||
|
string FIO { get; }
|
||||||
|
int Age { get; }
|
||||||
|
}
|
||||||
|
}
|
15
BeautySalon/BeautySalonDBModels/IMaster.cs
Normal file
15
BeautySalon/BeautySalonDBModels/IMaster.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BeautySalonDBModels
|
||||||
|
{
|
||||||
|
public interface IMaster
|
||||||
|
{
|
||||||
|
int MasterId { get; }
|
||||||
|
int SpecialisationId { get; }
|
||||||
|
string FIO { get; }
|
||||||
|
}
|
||||||
|
}
|
16
BeautySalon/BeautySalonDBModels/IReception.cs
Normal file
16
BeautySalon/BeautySalonDBModels/IReception.cs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BeautySalonDBModels
|
||||||
|
{
|
||||||
|
public interface IReception
|
||||||
|
{
|
||||||
|
int ReceptionId { get; }
|
||||||
|
int MasterId { get; }
|
||||||
|
int ServiceId { get; }
|
||||||
|
DateTime DateReception { get; }
|
||||||
|
}
|
||||||
|
}
|
16
BeautySalon/BeautySalonDBModels/IService.cs
Normal file
16
BeautySalon/BeautySalonDBModels/IService.cs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BeautySalonDBModels
|
||||||
|
{
|
||||||
|
public interface IService
|
||||||
|
{
|
||||||
|
int ServiceId { get; }
|
||||||
|
string ServiceName { get; }
|
||||||
|
double Price { get; }
|
||||||
|
int SpecialisationId { get; }
|
||||||
|
}
|
||||||
|
}
|
14
BeautySalon/BeautySalonDBModels/ISpecialisation.cs
Normal file
14
BeautySalon/BeautySalonDBModels/ISpecialisation.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BeautySalonDBModels
|
||||||
|
{
|
||||||
|
public interface ISpecialisation
|
||||||
|
{
|
||||||
|
int SpecialisationId { get; }
|
||||||
|
string Name { get; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user