24 lines
492 B
C#
24 lines
492 B
C#
using Microsoft.Extensions.Logging;
|
|
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 ConfectioneryView
|
|
{
|
|
public partial class FormPastry : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private int? _id;
|
|
public FormPastry()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|