This commit is contained in:
shadowik 2023-02-21 00:39:41 +03:00
parent 09978b4cee
commit b9d54b2e8b
8 changed files with 5 additions and 51 deletions

View File

@ -2,7 +2,6 @@
using PizzeriaContracts.BindingModels;
using PizzeriaContracts.BusinessLogicsContracts;
using PizzeriaContracts.SearchModels;
using System.Windows.Forms;
namespace PizzeriaView
{
@ -61,7 +60,7 @@ namespace PizzeriaView
var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model);
if (!operationResult)
{
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");//При обновлении, может быть, тоже ошибка появиться..
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
}
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
DialogResult = DialogResult.OK;

View File

@ -1,20 +1,9 @@
using Microsoft.Extensions.Logging;
using Microsoft.VisualBasic.Logging;
using PizzeriaContracts.BindingModels;
using PizzeriaContracts.BusinessLogicsContracts;
using PizzeriaContracts.SearchModels;
using PizzeriaContracts.ViewModels;
using PizzeriaListImplement.Models;
using System;
using System.Collections;
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 PizzeriaView
{

View File

@ -2,15 +2,6 @@
using Pizzeria;
using PizzeriaContracts.BindingModels;
using PizzeriaContracts.BusinessLogicsContracts;
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 PizzeriaView
{

View File

@ -4,15 +4,7 @@ using Microsoft.Extensions.Logging;
using PizzeriaContracts.BindingModels;
using PizzeriaContracts.BusinessLogicsContracts;
using PizzeriaContracts.SearchModels;
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 PizzeriaView
{

View File

@ -1,16 +1,6 @@
using PizzeriaDataModels.Models;
using Microsoft.VisualBasic.Logging;
using PizzeriaContracts.BusinessLogicsContracts;
using PizzeriaContracts.ViewModels;
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 PizzeriaView
{

View File

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaDataModels.Models
namespace PizzeriaDataModels.Models
{
public interface IComponentModel : IId
{

View File

@ -23,7 +23,6 @@ namespace PizzeriaListImplement.Implements
}
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
{
//А, собственно, этт метод не имеет ценности, так как повторяет функционал следующего
var result = new List<OrderViewModel>();
if (model == null || !model.Id.HasValue)
{

View File

@ -1,2 +1,2 @@
# PIbd-21_Zaharchenko_M.I._Bank_Executor
# PIbd-21_Zaharchenko_M.I._Pizzeria