2017-01-09 13:25:52 +03:00
|
|
|
|
using AppleJobs.Data.Models;
|
|
|
|
|
|
using AppleJobs.Data.Models.ModelsJobs;
|
2017-01-10 21:06:47 +03:00
|
|
|
|
using AppleJobs.Data.Models.Orders;
|
2017-01-09 13:25:52 +03:00
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JetFrames.AppleJobs.Editor.Views
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for Orders.xaml
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class Orders : UserControl
|
|
|
|
|
|
{
|
|
|
|
|
|
public Orders()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
2017-01-10 21:06:47 +03:00
|
|
|
|
EditorViewModel.InitGrid(dg);
|
2017-01-09 13:25:52 +03:00
|
|
|
|
}
|
2017-01-10 21:06:47 +03:00
|
|
|
|
|
2017-01-09 13:25:52 +03:00
|
|
|
|
}
|
|
|
|
|
|
}
|