SushiBarBase/SushiBar/SushiBarView/Forms/FormSushiComponent.cs

26 lines
566 B
C#
Raw Normal View History

2024-02-09 17:38:25 +04:00
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;
2024-02-11 17:20:09 +04:00
namespace SushiBarView.Forms
2024-02-09 17:38:25 +04:00
{
2024-02-11 17:20:09 +04:00
public partial class FormSushiComponent
2024-02-09 17:38:25 +04:00
{
private void buttonSave_Click(object sender, EventArgs e)
{
2024-02-11 17:20:09 +04:00
ButtonSave_Click(sender, e);
2024-02-09 17:38:25 +04:00
}
private void buttonCancel_Click(object sender, EventArgs e)
{
2024-02-11 17:20:09 +04:00
ButtonCancel_Click(sender, e);
2024-02-09 17:38:25 +04:00
}
}
}