43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using DinerContracts.BusinessLogicsContracts;
|
|
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 DinerView {
|
|
public partial class FormMail : Form {
|
|
|
|
private readonly ILogger _logger;
|
|
private readonly IMessageInfoLogic _logic;
|
|
|
|
public FormMail(ILogger<FormMail> logger, IMessageInfoLogic logic) {
|
|
InitializeComponent();
|
|
_logic = logic;
|
|
_logger = logger;
|
|
}
|
|
|
|
private void FormMail_Load(object sender, EventArgs e) {
|
|
try {
|
|
var list = _logic.ReadList(null);
|
|
if (list != null) {
|
|
dataGridView.DataSource = list;
|
|
dataGridView.Columns["ClientID"].Visible = false;
|
|
dataGridView.Columns["MessageID"].Visible = false;
|
|
dataGridView.Columns["Body"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
}
|
|
_logger.LogInformation("Загрузка списка писем");
|
|
}
|
|
catch (Exception ex) {
|
|
_logger.LogError(ex, "Ошибка загрузки писем");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
}
|