Files
EbayListingTool/EbayListingTool/Views/BulkImportWindow.xaml.cs

18 lines
511 B
C#

using EbayListingTool.Services;
using MahApps.Metro.Controls;
namespace EbayListingTool.Views;
public partial class BulkImportWindow : MetroWindow
{
public BulkImportWindow(
EbayListingService listingService,
EbayCategoryService categoryService,
AiAssistantService aiService,
BulkImportService bulkService,
EbayAuthService auth)
{
InitializeComponent();
BulkView.Initialise(listingService, categoryService, aiService, bulkService, auth);
}
}