Your search did not match any results.

Data Grid - Overview

DevExtreme ASP.NET MVC DataGrid is a jQuery-based client-side control with a variety of features. The features include data binding to Web API and MVC controllers, record grouping, filtering, sorting, and row selection. DataGrid includes strongly-typed HTML helpers and enables client-side validation based on Data Annotations. You can configure the control with Razor C# syntax.

Backend API
@using DevExtreme.MVC.Demos.Models @model IEnumerable<DataGridSale> @(Html.DevExtreme().DataGrid<DataGridSale>() .ID("gridContainer") .DataSource(Model) .KeyExpr("Id") .AllowColumnReordering(true) .RowAlternationEnabled(true) .Width("100%") .ShowBorders(true) .OnContentReady("contentReady") .Paging(p => p.PageSize(10)) .Pager(p => p .Visible(true) .ShowPageSizeSelector(true) .AllowedPageSizes(new[] {10, 25, 50, 100}) ) .SearchPanel(s => s .Visible(true) .HighlightCaseSensitive(true) ) .GroupPanel(g => g.Visible(true)) .Grouping(g => g.AutoExpandAll(false)) .Columns(columns => { columns.AddFor(m => m.Product) .GroupIndex(0); columns.AddFor(m => m.Amount) .Caption("Sale Amount") .DataType(GridColumnDataType.Number) .Format(Format.Currency) .Alignment(HorizontalAlignment.Right); columns.AddFor(m => m.Discount) .Caption("Discount %") .DataType(GridColumnDataType.Number) .Format(Format.Percent) .Alignment(HorizontalAlignment.Right) .AllowGrouping(false) .CssClass("bullet") .CellTemplate(@<text> @(Html.DevExtreme().Bullet() .Value(new JS("value * 100")) .Size(s => s .Height(35) .Width(150) ) .Margin(m => m .Top(5) .Bottom(0) .Left(5) ) .ShowTarget(false) .ShowZeroLevel(true) .StartScaleValue(0) .EndScaleValue(100) .Tooltip(t => t .Enabled(true) .Font(f => f.Size(18)) .PaddingTopBottom(2) .CustomizeTooltip("customizeTooltip") ) ) </text>); columns.AddFor(m => m.SaleDate) .DataType(GridColumnDataType.Date); columns.AddFor(m => m.Region) .DataType(GridColumnDataType.String); columns.AddFor(m => m.Sector) .DataType(GridColumnDataType.String); columns.AddFor(m => m.Channel) .DataType(GridColumnDataType.String); columns.AddFor(m => m.Customer) .DataType(GridColumnDataType.String) .Width(150); }) ) <script> var collapsed = false; function contentReady(e) { if(!collapsed) { collapsed = true; e.component.expandRow(["EnviroCare"]); } } function customizeTooltip(pointsInfo) { return { text: parseInt(pointsInfo.originalValue) + "%" }; } </script>
using DevExtreme.MVC.Demos.Models; using DevExtreme.MVC.Demos.Models.DataGrid; using DevExtreme.MVC.Demos.Models.SampleData; using System; using System.Linq; using System.Web.Mvc; namespace DevExtreme.MVC.Demos.Controllers { public class DataGridController : Controller { public ActionResult Overview() { return View(SampleData.DataGridSales); } } }
namespace DevExtreme.MVC.Demos.Models { public class DataGridSale { public int Id { get; set; } public string Product { get; set; } public int Amount { get; set; } public string Discount { get; set; } public string SaleDate { get; set; } public string Region { get; set; } public string Sector { get; set; } public string Channel { get; set; } public string Customer { get; set; } } }
using System.Collections.Generic; namespace DevExtreme.MVC.Demos.Models.SampleData { public partial class SampleData { public static readonly IEnumerable<DataGridSale> DataGridSales = new[] { new DataGridSale { Id = 1, Product = "Eco Supreme", Amount = 1300, Discount = "0.35", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 2, Product = "Eco Max", Amount = 4550, Discount = "0.18", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Renewable Supplies" }, new DataGridSale { Id = 3, Product = "SolarOne", Amount = 4410, Discount = "0.06", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 4, Product = "SolarMax", Amount = 8930, Discount = "0.0311111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Health", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 5, Product = "SolarMax", Amount = 4150, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 6, Product = "Eco Max", Amount = 2280, Discount = "0.088", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 7, Product = "Eco Supreme", Amount = 5400, Discount = "0.3", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 8, Product = "Eco Supreme", Amount = 1410, Discount = "0.295", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 9, Product = "Eco Supreme", Amount = 1850, Discount = "0.075", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 10, Product = "Eco Max", Amount = 9360, Discount = "0.256", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 11, Product = "SolarMax", Amount = 6390, Discount = "0.16", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 12, Product = "Eco Max", Amount = 2220, Discount = "0.112", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 13, Product = "Eco Max", Amount = 1910, Discount = "0.236", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 14, Product = "EnviroCare", Amount = 1230, Discount = "0.2971428571428571428571428571", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 15, Product = "Eco Max", Amount = 1890, Discount = "0.244", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 16, Product = "Eco Max", Amount = 4560, Discount = "0.176", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 17, Product = "SolarMax", Amount = 4130, Discount = "0.1644444444444444444444444444", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 18, Product = "Eco Max", Amount = 4670, Discount = "0.132", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 19, Product = "SolarMax", Amount = 6180, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 20, Product = "Eco Supreme", Amount = 1260, Discount = "0.37", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 21, Product = "Eco Supreme", Amount = 1710, Discount = "0.145", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 22, Product = "Eco Max", Amount = 9880, Discount = "0.048", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 23, Product = "Eco Supreme", Amount = 5790, Discount = "0.105", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 24, Product = "Eco Max", Amount = 2130, Discount = "0.148", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 25, Product = "SolarMax", Amount = 8800, Discount = "0.0888888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 26, Product = "Eco Supreme", Amount = 5370, Discount = "0.315", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 27, Product = "SolarMax", Amount = 6250, Discount = "0.2222222222222222222222222222", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 28, Product = "EnviroCare", Amount = 4790, Discount = "0.2628571428571428571428571429", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 29, Product = "SolarMax", Amount = 1840, Discount = "0.1822222222222222222222222222", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 30, Product = "SolarMax", Amount = 4240, Discount = "0.1155555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 31, Product = "Eco Supreme", Amount = 3490, Discount = "0.255", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "Columbia Solar" }, new DataGridSale { Id = 32, Product = "Eco Max", Amount = 6760, Discount = "0.296", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 33, Product = "Eco Max", Amount = 4820, Discount = "0.072", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 34, Product = "Eco Supreme", Amount = 5490, Discount = "0.255", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Health", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 35, Product = "Eco Max", Amount = 9300, Discount = "0.28", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Health", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 36, Product = "Eco Max", Amount = 2210, Discount = "0.116", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 37, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 38, Product = "SolarMax", Amount = 6010, Discount = "0.3288888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 39, Product = "Eco Supreme", Amount = 3490, Discount = "0.255", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 40, Product = "Eco Max", Amount = 7420, Discount = "0.032", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "Beacon Systems" }, new DataGridSale { Id = 41, Product = "Eco Max", Amount = 7190, Discount = "0.124", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 42, Product = "EnviroCare", Amount = 6280, Discount = "0.4114285714285714285714285714", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 43, Product = "Eco Max", Amount = 9790, Discount = "0.084", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 44, Product = "EnviroCare", Amount = 6760, Discount = "0.1371428571428571428571428571", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Health", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 45, Product = "SolarMax", Amount = 6530, Discount = "0.0977777777777777777777777778", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 46, Product = "Eco Max", Amount = 9560, Discount = "0.176", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 47, Product = "Eco Supreme", Amount = 5330, Discount = "0.335", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 48, Product = "Eco Max", Amount = 9380, Discount = "0.248", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 49, Product = "Eco Max", Amount = 2330, Discount = "0.068", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 50, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 51, Product = "SolarOne", Amount = 2330, Discount = "0.4466666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Building Management Inc" }, new DataGridSale { Id = 52, Product = "EnviroCare", Amount = 1580, Discount = "0.0971428571428571428571428571", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 53, Product = "SolarMax", Amount = 2000, Discount = "0.1111111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 54, Product = "Eco Supreme", Amount = 1900, Discount = "0.05", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 55, Product = "SolarMax", Amount = 6150, Discount = "0.2666666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 56, Product = "Eco Supreme", Amount = 1740, Discount = "0.13", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 57, Product = "Eco Max", Amount = 4520, Discount = "0.192", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 58, Product = "Eco Max", Amount = 2440, Discount = "0.024", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 59, Product = "Eco Max", Amount = 2080, Discount = "0.168", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 60, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 61, Product = "SolarMax", Amount = 1610, Discount = "0.2844444444444444444444444444", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 62, Product = "SolarMax", Amount = 1980, Discount = "0.12", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "Retail", Customer = "Smith & Co" }, new DataGridSale { Id = 63, Product = "Eco Max", Amount = 7230, Discount = "0.108", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 64, Product = "Eco Max", Amount = 6930, Discount = "0.228", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 65, Product = "Eco Supreme", Amount = 7560, Discount = "0.22", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 66, Product = "Eco Supreme", Amount = 1840, Discount = "0.08", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 67, Product = "Eco Supreme", Amount = 7550, Discount = "0.225", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 68, Product = "SolarMax", Amount = 1660, Discount = "0.2622222222222222222222222222", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 69, Product = "Eco Supreme", Amount = 5330, Discount = "0.335", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 70, Product = "EnviroCare", Amount = 6660, Discount = "0.1942857142857142857142857143", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 71, Product = "Eco Supreme", Amount = 1560, Discount = "0.22", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 72, Product = "Eco Supreme", Amount = 7540, Discount = "0.23", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 73, Product = "Eco Max", Amount = 2260, Discount = "0.096", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Direct", Customer = "Renewable Supplies" }, new DataGridSale { Id = 74, Product = "SolarMax", Amount = 1920, Discount = "0.1466666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 75, Product = "Eco Max", Amount = 2020, Discount = "0.192", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 76, Product = "Eco Supreme", Amount = 3690, Discount = "0.155", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 77, Product = "SolarMax", Amount = 6500, Discount = "0.1111111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 78, Product = "Eco Supreme", Amount = 7510, Discount = "0.245", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 79, Product = "SolarOne", Amount = 2540, Discount = "0.3066666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 80, Product = "Eco Max", Amount = 2330, Discount = "0.068", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 81, Product = "Eco Supreme", Amount = 1380, Discount = "0.31", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 82, Product = "Eco Max", Amount = 6930, Discount = "0.228", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 83, Product = "Eco Max", Amount = 1950, Discount = "0.22", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 84, Product = "Eco Max", Amount = 4850, Discount = "0.06", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 85, Product = "Eco Max", Amount = 4840, Discount = "0.064", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 86, Product = "Eco Max", Amount = 4790, Discount = "0.084", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 87, Product = "EnviroCare Max", Amount = 8340, Discount = "0.0214285714285714285714285714", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 88, Product = "EnviroCare", Amount = 1060, Discount = "0.3942857142857142857142857143", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 89, Product = "SolarOne", Amount = 2450, Discount = "0.3666666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 90, Product = "Eco Max", Amount = 2140, Discount = "0.144", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 91, Product = "Eco Max", Amount = 4760, Discount = "0.096", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 92, Product = "Eco Max", Amount = 4620, Discount = "0.152", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 93, Product = "SolarMax", Amount = 1830, Discount = "0.1866666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 94, Product = "Eco Max", Amount = 1960, Discount = "0.216", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 95, Product = "Eco Max", Amount = 2330, Discount = "0.068", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 96, Product = "Eco Max", Amount = 6940, Discount = "0.224", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 97, Product = "EnviroCare Max", Amount = 5540, Discount = "0.0214285714285714285714285714", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Building Management Inc" }, new DataGridSale { Id = 98, Product = "EnviroCare", Amount = 1530, Discount = "0.1257142857142857142857142857", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 99, Product = "SolarMax", Amount = 8480, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 100, Product = "SolarMax", Amount = 4420, Discount = "0.0355555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 101, Product = "SolarOne", Amount = 1410, Discount = "0.06", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 102, Product = "SolarMax", Amount = 6190, Discount = "0.2488888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 103, Product = "SolarMax", Amount = 4380, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 104, Product = "Eco Max", Amount = 4310, Discount = "0.276", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 105, Product = "Eco Max", Amount = 9800, Discount = "0.08", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 106, Product = "Eco Max", Amount = 7090, Discount = "0.164", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 107, Product = "Eco Max", Amount = 2310, Discount = "0.076", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 108, Product = "Eco Supreme", Amount = 1520, Discount = "0.24", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 109, Product = "Eco Max", Amount = 7350, Discount = "0.06", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 110, Product = "EnviroCare", Amount = 1340, Discount = "0.2342857142857142857142857143", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 111, Product = "SolarOne", Amount = 960, Discount = "0.36", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 112, Product = "SolarMax", Amount = 8810, Discount = "0.0844444444444444444444444444", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 113, Product = "SolarMax", Amount = 8450, Discount = "0.2444444444444444444444444444", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 114, Product = "Eco Max", Amount = 1760, Discount = "0.296", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 115, Product = "EnviroCare", Amount = 1500, Discount = "0.1428571428571428571428571429", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 116, Product = "Eco Supreme", Amount = 7660, Discount = "0.17", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 117, Product = "SolarMax", Amount = 4080, Discount = "0.1866666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 118, Product = "Eco Supreme", Amount = 3500, Discount = "0.25", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 119, Product = "Eco Supreme", Amount = 7340, Discount = "0.33", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 120, Product = "Eco Max", Amount = 4910, Discount = "0.036", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 121, Product = "Eco Max", Amount = 7020, Discount = "0.192", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 122, Product = "Eco Max", Amount = 9900, Discount = "0.04", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 123, Product = "Eco Max", Amount = 9390, Discount = "0.244", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 124, Product = "Eco Max", Amount = 9660, Discount = "0.136", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 125, Product = "Eco Max", Amount = 9830, Discount = "0.068", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 126, Product = "Eco Max", Amount = 1850, Discount = "0.26", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 127, Product = "Eco Max", Amount = 9350, Discount = "0.26", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 128, Product = "Eco Max", Amount = 4280, Discount = "0.288", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 129, Product = "SolarMax", Amount = 4030, Discount = "0.2088888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 130, Product = "EnviroCare", Amount = 2790, Discount = "0.4057142857142857142857142857", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 131, Product = "Eco Supreme", Amount = 3870, Discount = "0.065", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 132, Product = "SolarMax", Amount = 8350, Discount = "0.2888888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 133, Product = "Eco Max", Amount = 4270, Discount = "0.292", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 134, Product = "SolarMax", Amount = 3800, Discount = "0.3111111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 135, Product = "Eco Supreme", Amount = 3260, Discount = "0.37", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 136, Product = "Eco Max", Amount = 9770, Discount = "0.092", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 137, Product = "Eco Max", Amount = 2010, Discount = "0.196", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 138, Product = "EnviroCare Max", Amount = 2430, Discount = "0.1321428571428571428571428571", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 139, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 140, Product = "Eco Supreme", Amount = 1750, Discount = "0.125", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 141, Product = "SolarMax", Amount = 6230, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 142, Product = "Eco Supreme", Amount = 3590, Discount = "0.205", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 143, Product = "Eco Supreme", Amount = 1870, Discount = "0.065", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 144, Product = "Eco Supreme", Amount = 5470, Discount = "0.265", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 145, Product = "SolarOne", Amount = 5480, Discount = "0.3466666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Building Management Inc" }, new DataGridSale { Id = 146, Product = "Eco Max", Amount = 7150, Discount = "0.14", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 147, Product = "Eco Supreme", Amount = 1810, Discount = "0.095", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Building Management Inc" }, new DataGridSale { Id = 148, Product = "Eco Max", Amount = 9460, Discount = "0.216", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 149, Product = "Eco Max", Amount = 7280, Discount = "0.088", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 150, Product = "Eco Max", Amount = 9630, Discount = "0.148", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 151, Product = "Eco Max", Amount = 9280, Discount = "0.288", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 152, Product = "SolarMax", Amount = 4270, Discount = "0.1022222222222222222222222222", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 153, Product = "Eco Supreme", Amount = 5870, Discount = "0.065", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 154, Product = "Eco Supreme", Amount = 3640, Discount = "0.18", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 155, Product = "Eco Max", Amount = 7080, Discount = "0.168", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 156, Product = "Eco Supreme", Amount = 3620, Discount = "0.19", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 157, Product = "Eco Max", Amount = 4890, Discount = "0.044", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 158, Product = "Eco Max", Amount = 2410, Discount = "0.036", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 159, Product = "Eco Supreme", Amount = 3810, Discount = "0.095", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Health Plus Inc" }, new DataGridSale { Id = 160, Product = "Eco Max", Amount = 4940, Discount = "0.024", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 161, Product = "Eco Supreme", Amount = 7760, Discount = "0.12", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 162, Product = "Eco Supreme", Amount = 1560, Discount = "0.22", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 163, Product = "Eco Max", Amount = 4530, Discount = "0.188", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 164, Product = "Eco Max", Amount = 6770, Discount = "0.292", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 165, Product = "SolarOne", Amount = 2750, Discount = "0.1666666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 166, Product = "Eco Max", Amount = 2200, Discount = "0.12", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 167, Product = "SolarMax", Amount = 1720, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Get Solar Inc" }, new DataGridSale { Id = 168, Product = "SolarMax", Amount = 8470, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 169, Product = "SolarOne", Amount = 1270, Discount = "0.1533333333333333333333333333", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 170, Product = "Eco Max", Amount = 4500, Discount = "0.2", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 171, Product = "Eco Max", Amount = 9920, Discount = "0.032", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 172, Product = "SolarMax", Amount = 8350, Discount = "0.2888888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 173, Product = "Eco Supreme", Amount = 1660, Discount = "0.17", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 174, Product = "EnviroCare", Amount = 6750, Discount = "0.1428571428571428571428571429", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 175, Product = "Eco Supreme", Amount = 5530, Discount = "0.235", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 176, Product = "SolarMax", Amount = 8700, Discount = "0.1333333333333333333333333333", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 177, Product = "Eco Max", Amount = 4390, Discount = "0.244", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 178, Product = "EnviroCare", Amount = 4690, Discount = "0.32", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 179, Product = "Eco Max", Amount = 9480, Discount = "0.208", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 180, Product = "Eco Supreme", Amount = 5880, Discount = "0.06", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 181, Product = "Eco Max", Amount = 2220, Discount = "0.112", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 182, Product = "Eco Max", Amount = 4830, Discount = "0.068", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 183, Product = "Eco Max", Amount = 2390, Discount = "0.044", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 184, Product = "Eco Max", Amount = 4380, Discount = "0.248", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 185, Product = "Eco Supreme", Amount = 5590, Discount = "0.205", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 186, Product = "Eco Supreme", Amount = 3810, Discount = "0.095", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 187, Product = "Eco Supreme", Amount = 5460, Discount = "0.27", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 188, Product = "Eco Max", Amount = 1790, Discount = "0.284", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 189, Product = "Eco Supreme", Amount = 7450, Discount = "0.275", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 190, Product = "SolarMax", Amount = 1920, Discount = "0.1466666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 191, Product = "Eco Max", Amount = 7040, Discount = "0.184", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 192, Product = "Eco Max", Amount = 9540, Discount = "0.184", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 193, Product = "Eco Supreme", Amount = 5760, Discount = "0.12", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 194, Product = "Eco Max", Amount = 2240, Discount = "0.104", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 195, Product = "Eco Supreme", Amount = 7460, Discount = "0.27", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 196, Product = "EnviroCare", Amount = 1070, Discount = "0.3885714285714285714285714286", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 197, Product = "Eco Max", Amount = 2370, Discount = "0.052", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 198, Product = "EnviroCare", Amount = 6300, Discount = "0.4", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 199, Product = "EnviroCare", Amount = 6560, Discount = "0.2514285714285714285714285714", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 200, Product = "Eco Supreme", Amount = 3510, Discount = "0.245", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 201, Product = "Eco Max", Amount = 9480, Discount = "0.208", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 202, Product = "EnviroCare", Amount = 1050, Discount = "0.4", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 203, Product = "SolarMax", Amount = 1620, Discount = "0.28", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 204, Product = "SolarMax", Amount = 8740, Discount = "0.1155555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 205, Product = "Eco Supreme", Amount = 3820, Discount = "0.09", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Renewable Supplies" }, new DataGridSale { Id = 206, Product = "Eco Max", Amount = 6910, Discount = "0.236", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 207, Product = "Eco Max", Amount = 1790, Discount = "0.284", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 208, Product = "EnviroCare Max", Amount = 10630, Discount = "0.2035714285714285714285714286", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Building Management Inc" }, new DataGridSale { Id = 209, Product = "Eco Max", Amount = 9530, Discount = "0.188", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 210, Product = "Eco Max", Amount = 9720, Discount = "0.112", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 211, Product = "EnviroCare", Amount = 6340, Discount = "0.3771428571428571428571428571", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 212, Product = "Eco Supreme", Amount = 3640, Discount = "0.18", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 213, Product = "Eco Max", Amount = 2020, Discount = "0.192", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 214, Product = "Eco Supreme", Amount = 3500, Discount = "0.25", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 215, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 216, Product = "Eco Supreme", Amount = 7440, Discount = "0.28", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 217, Product = "Eco Supreme", Amount = 3370, Discount = "0.315", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 218, Product = "SolarMax", Amount = 8910, Discount = "0.04", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 219, Product = "SolarMax", Amount = 6480, Discount = "0.12", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 220, Product = "Eco Max", Amount = 7270, Discount = "0.092", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 221, Product = "SolarMax", Amount = 2090, Discount = "0.0711111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 222, Product = "Eco Supreme", Amount = 3310, Discount = "0.345", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 223, Product = "Eco Max", Amount = 4410, Discount = "0.236", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 224, Product = "Eco Max", Amount = 4750, Discount = "0.1", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 225, Product = "Eco Max", Amount = 9770, Discount = "0.092", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 226, Product = "SolarMax", Amount = 3770, Discount = "0.3244444444444444444444444444", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 227, Product = "SolarOne", Amount = 860, Discount = "0.4266666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 228, Product = "Eco Supreme", Amount = 3310, Discount = "0.345", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 229, Product = "Eco Max", Amount = 9580, Discount = "0.168", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 230, Product = "Eco Supreme", Amount = 1950, Discount = "0.025", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 231, Product = "SolarMax", Amount = 6060, Discount = "0.3066666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 232, Product = "Eco Max", Amount = 1820, Discount = "0.272", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 233, Product = "Eco Max", Amount = 2220, Discount = "0.112", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 234, Product = "Eco Supreme", Amount = 7720, Discount = "0.14", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 235, Product = "EnviroCare", Amount = 6690, Discount = "0.1771428571428571428571428571", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 236, Product = "Eco Max", Amount = 1920, Discount = "0.232", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 237, Product = "SolarMax", Amount = 8440, Discount = "0.2488888888888888888888888889", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 238, Product = "Eco Supreme", Amount = 7280, Discount = "0.36", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 239, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 240, Product = "Eco Max", Amount = 7420, Discount = "0.032", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 241, Product = "Eco Supreme", Amount = 3440, Discount = "0.28", SaleDate = "2024-05-10T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 242, Product = "SolarMax", Amount = 6130, Discount = "0.2755555555555555555555555556", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 243, Product = "SolarMax", Amount = 8840, Discount = "0.0711111111111111111111111111", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 244, Product = "Eco Max", Amount = 7420, Discount = "0.032", SaleDate = "2024-05-10T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 245, Product = "SolarMax", Amount = 8940, Discount = "0.0266666666666666666666666667", SaleDate = "2024-05-10T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Renewable Supplies" }, new DataGridSale { Id = 246, Product = "Eco Supreme", Amount = 7600, Discount = "0.2", SaleDate = "2024-05-10T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 247, Product = "Eco Max", Amount = 9590, Discount = "0.164", SaleDate = "2024-05-10T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 248, Product = "EnviroCare", Amount = 4690, Discount = "0.32", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 249, Product = "Eco Max", Amount = 7100, Discount = "0.16", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 250, Product = "Eco Supreme", Amount = 5510, Discount = "0.245", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 251, Product = "Eco Supreme", Amount = 7760, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 252, Product = "SolarMax", Amount = 6050, Discount = "0.3111111111111111111111111111", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 253, Product = "SolarMax", Amount = 8300, Discount = "0.3111111111111111111111111111", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 254, Product = "SolarMax", Amount = 6330, Discount = "0.1866666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 255, Product = "SolarMax", Amount = 1580, Discount = "0.2977777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 256, Product = "Eco Supreme", Amount = 1730, Discount = "0.135", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 257, Product = "SolarMax", Amount = 3910, Discount = "0.2622222222222222222222222222", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 258, Product = "SolarMax", Amount = 4020, Discount = "0.2133333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 259, Product = "Eco Supreme", Amount = 3540, Discount = "0.23", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 260, Product = "SolarMax", Amount = 6400, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 261, Product = "Eco Max", Amount = 9350, Discount = "0.26", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 262, Product = "Eco Max", Amount = 6980, Discount = "0.208", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 263, Product = "Eco Max", Amount = 7040, Discount = "0.184", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 264, Product = "SolarMax", Amount = 6620, Discount = "0.0577777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 265, Product = "Eco Supreme", Amount = 1370, Discount = "0.315", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 266, Product = "Eco Max", Amount = 4700, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 267, Product = "Eco Max", Amount = 4740, Discount = "0.104", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 268, Product = "SolarMax", Amount = 8720, Discount = "0.1244444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 269, Product = "Eco Supreme", Amount = 7460, Discount = "0.27", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 270, Product = "Eco Supreme", Amount = 1450, Discount = "0.275", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 271, Product = "SolarMax", Amount = 6080, Discount = "0.2977777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 272, Product = "EnviroCare", Amount = 6780, Discount = "0.1257142857142857142857142857", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 273, Product = "Eco Max", Amount = 7150, Discount = "0.14", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 274, Product = "Eco Max", Amount = 9420, Discount = "0.232", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 275, Product = "Eco Supreme", Amount = 3880, Discount = "0.06", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 276, Product = "Eco Max", Amount = 4800, Discount = "0.08", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 277, Product = "EnviroCare", Amount = 1180, Discount = "0.3257142857142857142857142857", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 278, Product = "SolarMax", Amount = 6200, Discount = "0.2444444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Renewable Supplies" }, new DataGridSale { Id = 279, Product = "EnviroCare", Amount = 5040, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 280, Product = "EnviroCare", Amount = 3240, Discount = "0.1485714285714285714285714286", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 281, Product = "Eco Supreme", Amount = 3490, Discount = "0.255", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 282, Product = "Eco Supreme", Amount = 3760, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 283, Product = "SolarOne", Amount = 5670, Discount = "0.22", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 284, Product = "EnviroCare", Amount = 5060, Discount = "0.1085714285714285714285714286", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 285, Product = "SolarMax", Amount = 1700, Discount = "0.2444444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 286, Product = "SolarMax", Amount = 6160, Discount = "0.2622222222222222222222222222", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 287, Product = "SolarOne", Amount = 5450, Discount = "0.3666666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 288, Product = "SolarMax", Amount = 6170, Discount = "0.2577777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 289, Product = "Eco Supreme", Amount = 5790, Discount = "0.105", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Energy", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 290, Product = "Eco Max", Amount = 4490, Discount = "0.204", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 291, Product = "Eco Max", Amount = 7070, Discount = "0.172", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 292, Product = "Eco Max", Amount = 2130, Discount = "0.148", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 293, Product = "Eco Supreme", Amount = 7470, Discount = "0.265", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 294, Product = "Eco Supreme", Amount = 3760, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 295, Product = "Eco Max", Amount = 2080, Discount = "0.168", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 296, Product = "Eco Max", Amount = 2140, Discount = "0.144", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 297, Product = "SolarMax", Amount = 1880, Discount = "0.1644444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 298, Product = "SolarOne", Amount = 1370, Discount = "0.0866666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 299, Product = "Eco Max", Amount = 7320, Discount = "0.072", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 300, Product = "Eco Supreme", Amount = 5580, Discount = "0.21", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 301, Product = "SolarOne", Amount = 4200, Discount = "0.2", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 302, Product = "SolarMax", Amount = 6320, Discount = "0.1911111111111111111111111111", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 303, Product = "Eco Supreme", Amount = 5880, Discount = "0.06", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 304, Product = "SolarMax", Amount = 1800, Discount = "0.2", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 305, Product = "Eco Max", Amount = 2340, Discount = "0.064", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 306, Product = "SolarOne", Amount = 2890, Discount = "0.0733333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 307, Product = "EnviroCare", Amount = 1260, Discount = "0.28", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Banking", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 308, Product = "Eco Max", Amount = 7280, Discount = "0.088", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 309, Product = "Eco Max", Amount = 4500, Discount = "0.2", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 310, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 311, Product = "SolarMax", Amount = 6470, Discount = "0.1244444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 312, Product = "EnviroCare", Amount = 5190, Discount = "0.0342857142857142857142857143", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 313, Product = "Eco Max", Amount = 7230, Discount = "0.108", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 314, Product = "Eco Max", Amount = 9850, Discount = "0.06", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 315, Product = "EnviroCare", Amount = 6920, Discount = "0.0457142857142857142857142857", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 316, Product = "Eco Max", Amount = 6920, Discount = "0.232", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 317, Product = "Eco Supreme", Amount = 1360, Discount = "0.32", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 318, Product = "Eco Supreme", Amount = 7480, Discount = "0.26", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 319, Product = "SolarMax", Amount = 1670, Discount = "0.2577777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 320, Product = "Eco Supreme", Amount = 5650, Discount = "0.175", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 321, Product = "Eco Max", Amount = 1830, Discount = "0.268", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 322, Product = "Eco Max", Amount = 6990, Discount = "0.204", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 323, Product = "Eco Max", Amount = 6950, Discount = "0.22", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 324, Product = "EnviroCare", Amount = 6550, Discount = "0.2571428571428571428571428571", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Manufacturing", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 325, Product = "SolarMax", Amount = 3790, Discount = "0.3155555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 326, Product = "SolarMax", Amount = 4370, Discount = "0.0577777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 327, Product = "Eco Supreme", Amount = 5770, Discount = "0.115", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 328, Product = "Eco Max", Amount = 9440, Discount = "0.224", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 329, Product = "Eco Max", Amount = 9860, Discount = "0.056", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 330, Product = "Eco Supreme", Amount = 3530, Discount = "0.235", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 331, Product = "Eco Supreme", Amount = 1550, Discount = "0.225", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 332, Product = "EnviroCare", Amount = 1370, Discount = "0.2171428571428571428571428571", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 333, Product = "Eco Supreme", Amount = 7420, Discount = "0.29", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 334, Product = "Eco Max", Amount = 7110, Discount = "0.156", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 335, Product = "SolarMax", Amount = 2010, Discount = "0.1066666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 336, Product = "Eco Supreme", Amount = 1540, Discount = "0.23", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 337, Product = "Eco Max", Amount = 1880, Discount = "0.248", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 338, Product = "Eco Supreme", Amount = 1500, Discount = "0.25", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 339, Product = "SolarOne", Amount = 5620, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Smith & Co" }, new DataGridSale { Id = 340, Product = "SolarOne", Amount = 3880, Discount = "0.4133333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 341, Product = "SolarOne", Amount = 2500, Discount = "0.3333333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 342, Product = "SolarMax", Amount = 3830, Discount = "0.2977777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 343, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 344, Product = "SolarMax", Amount = 8540, Discount = "0.2044444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Get Solar Inc" }, new DataGridSale { Id = 345, Product = "Eco Supreme", Amount = 7440, Discount = "0.28", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 346, Product = "Eco Max", Amount = 2230, Discount = "0.108", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 347, Product = "SolarMax", Amount = 8900, Discount = "0.0444444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 348, Product = "Eco Max", Amount = 9710, Discount = "0.116", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 349, Product = "SolarMax", Amount = 3990, Discount = "0.2266666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 350, Product = "Eco Supreme", Amount = 3420, Discount = "0.29", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 351, Product = "Eco Max", Amount = 1990, Discount = "0.204", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Retail", Customer = "Beacon Systems" }, new DataGridSale { Id = 352, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 353, Product = "Eco Max", Amount = 9660, Discount = "0.136", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 354, Product = "Eco Max", Amount = 1870, Discount = "0.252", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 355, Product = "Eco Max", Amount = 4470, Discount = "0.212", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 356, Product = "Eco Max", Amount = 7300, Discount = "0.08", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 357, Product = "SolarMax", Amount = 1540, Discount = "0.3155555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 358, Product = "Eco Max", Amount = 9720, Discount = "0.112", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 359, Product = "SolarMax", Amount = 4150, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 360, Product = "SolarMax", Amount = 6360, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 361, Product = "Eco Max", Amount = 9450, Discount = "0.22", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 362, Product = "EnviroCare", Amount = 1540, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 363, Product = "Eco Max", Amount = 7450, Discount = "0.02", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 364, Product = "SolarMax", Amount = 8560, Discount = "0.1955555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 365, Product = "Eco Max", Amount = 2090, Discount = "0.164", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Beacon Systems" }, new DataGridSale { Id = 366, Product = "SolarOne", Amount = 2320, Discount = "0.4533333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 367, Product = "EnviroCare", Amount = 4980, Discount = "0.1542857142857142857142857143", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 368, Product = "Eco Max", Amount = 4530, Discount = "0.188", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 369, Product = "SolarMax", Amount = 3940, Discount = "0.2488888888888888888888888889", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 370, Product = "SolarOne", Amount = 4210, Discount = "0.1933333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 371, Product = "Eco Max", Amount = 9780, Discount = "0.088", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 372, Product = "Eco Max", Amount = 7360, Discount = "0.056", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 373, Product = "SolarOne", Amount = 5410, Discount = "0.3933333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Retail", Customer = "Apollo Inc" }, new DataGridSale { Id = 374, Product = "Eco Max", Amount = 4740, Discount = "0.104", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 375, Product = "Eco Supreme", Amount = 5280, Discount = "0.36", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 376, Product = "SolarMax", Amount = 3820, Discount = "0.3022222222222222222222222222", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 377, Product = "SolarMax", Amount = 6620, Discount = "0.0577777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 378, Product = "Eco Max", Amount = 6860, Discount = "0.256", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 379, Product = "SolarMax", Amount = 8900, Discount = "0.0444444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 380, Product = "Eco Max", Amount = 2090, Discount = "0.164", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 381, Product = "Eco Supreme", Amount = 7730, Discount = "0.135", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 382, Product = "Eco Max", Amount = 4540, Discount = "0.184", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 383, Product = "EnviroCare", Amount = 3420, Discount = "0.0457142857142857142857142857", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Health Plus Inc" }, new DataGridSale { Id = 384, Product = "Eco Max", Amount = 1840, Discount = "0.264", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 385, Product = "EnviroCare", Amount = 6340, Discount = "0.3771428571428571428571428571", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 386, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 387, Product = "SolarMax", Amount = 4230, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 388, Product = "Eco Supreme", Amount = 5400, Discount = "0.3", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 389, Product = "SolarMax", Amount = 8880, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 390, Product = "Eco Supreme", Amount = 1850, Discount = "0.075", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 391, Product = "SolarMax", Amount = 6490, Discount = "0.1155555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 392, Product = "Eco Max", Amount = 9310, Discount = "0.276", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 393, Product = "SolarMax", Amount = 6280, Discount = "0.2088888888888888888888888889", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 394, Product = "Eco Max", Amount = 7070, Discount = "0.172", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Arthur & Sons" }, new DataGridSale { Id = 395, Product = "Eco Supreme", Amount = 5910, Discount = "0.045", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 396, Product = "SolarMax", Amount = 6110, Discount = "0.2844444444444444444444444444", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 397, Product = "SolarMax", Amount = 1800, Discount = "0.2", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 398, Product = "Eco Supreme", Amount = 5390, Discount = "0.305", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Insurance", Channel = "VARs", Customer = "Renewable Supplies" }, new DataGridSale { Id = 399, Product = "Eco Max", Amount = 9890, Discount = "0.044", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 400, Product = "Eco Max", Amount = 6920, Discount = "0.232", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 401, Product = "SolarMax", Amount = 4140, Discount = "0.16", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Health", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 402, Product = "EnviroCare", Amount = 1420, Discount = "0.1885714285714285714285714286", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 403, Product = "Eco Supreme", Amount = 7280, Discount = "0.36", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 404, Product = "SolarMax", Amount = 1820, Discount = "0.1911111111111111111111111111", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 405, Product = "Eco Max", Amount = 4750, Discount = "0.1", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 406, Product = "Eco Supreme", Amount = 5860, Discount = "0.07", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 407, Product = "Eco Supreme", Amount = 5520, Discount = "0.24", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 408, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 409, Product = "SolarMax", Amount = 6440, Discount = "0.1377777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 410, Product = "Eco Max", Amount = 9680, Discount = "0.128", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 411, Product = "Eco Max", Amount = 9510, Discount = "0.196", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 412, Product = "Eco Max", Amount = 7100, Discount = "0.16", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 413, Product = "Eco Supreme", Amount = 7550, Discount = "0.225", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 414, Product = "Eco Max", Amount = 7120, Discount = "0.152", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 415, Product = "Eco Supreme", Amount = 7260, Discount = "0.37", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 416, Product = "EnviroCare Max", Amount = 10570, Discount = "0.225", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 417, Product = "SolarMax", Amount = 3870, Discount = "0.28", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 418, Product = "Eco Max", Amount = 4400, Discount = "0.24", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 419, Product = "SolarMax", Amount = 1850, Discount = "0.1777777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 420, Product = "Eco Supreme", Amount = 3700, Discount = "0.15", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 421, Product = "Eco Supreme", Amount = 1840, Discount = "0.08", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "Arthur & Sons" }, new DataGridSale { Id = 422, Product = "SolarMax", Amount = 4250, Discount = "0.1111111111111111111111111111", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 423, Product = "Eco Supreme", Amount = 1350, Discount = "0.325", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 424, Product = "Eco Max", Amount = 2270, Discount = "0.092", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 425, Product = "Eco Max", Amount = 9580, Discount = "0.168", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 426, Product = "Eco Supreme", Amount = 1460, Discount = "0.27", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 427, Product = "SolarMax", Amount = 4240, Discount = "0.1155555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 428, Product = "Eco Max", Amount = 2350, Discount = "0.06", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Green Energy Inc" }, new DataGridSale { Id = 429, Product = "Eco Max", Amount = 4720, Discount = "0.112", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 430, Product = "Eco Max", Amount = 9940, Discount = "0.024", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Building Management Inc" }, new DataGridSale { Id = 431, Product = "Eco Supreme", Amount = 3650, Discount = "0.175", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 432, Product = "EnviroCare", Amount = 6670, Discount = "0.1885714285714285714285714286", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 433, Product = "Eco Max", Amount = 9480, Discount = "0.208", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 434, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 435, Product = "SolarMax", Amount = 8650, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 436, Product = "SolarOne", Amount = 2500, Discount = "0.3333333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 437, Product = "EnviroCare", Amount = 4790, Discount = "0.2628571428571428571428571429", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 438, Product = "Eco Max", Amount = 7320, Discount = "0.072", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 439, Product = "Eco Supreme", Amount = 5520, Discount = "0.24", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 440, Product = "Eco Max", Amount = 9740, Discount = "0.104", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 441, Product = "Eco Supreme", Amount = 5680, Discount = "0.16", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 442, Product = "Eco Supreme", Amount = 1920, Discount = "0.04", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 443, Product = "Eco Max", Amount = 4700, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 444, Product = "Eco Supreme", Amount = 5430, Discount = "0.285", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 445, Product = "Eco Max", Amount = 7160, Discount = "0.136", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 446, Product = "Eco Supreme", Amount = 5330, Discount = "0.335", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 447, Product = "Eco Max", Amount = 6930, Discount = "0.228", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 448, Product = "Eco Supreme", Amount = 7910, Discount = "0.045", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 449, Product = "Eco Max", Amount = 7210, Discount = "0.116", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 450, Product = "SolarMax", Amount = 8500, Discount = "0.2222222222222222222222222222", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 451, Product = "SolarMax", Amount = 1830, Discount = "0.1866666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Renewable Supplies" }, new DataGridSale { Id = 452, Product = "EnviroCare", Amount = 1400, Discount = "0.2", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 453, Product = "Eco Max", Amount = 9580, Discount = "0.168", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 454, Product = "Eco Supreme", Amount = 1340, Discount = "0.33", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 455, Product = "Eco Max", Amount = 7210, Discount = "0.116", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 456, Product = "Eco Max", Amount = 9680, Discount = "0.128", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 457, Product = "Eco Max", Amount = 1810, Discount = "0.276", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 458, Product = "Eco Max", Amount = 2130, Discount = "0.148", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 459, Product = "Eco Max", Amount = 6990, Discount = "0.204", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 460, Product = "Eco Supreme", Amount = 3880, Discount = "0.06", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 461, Product = "SolarMax", Amount = 8330, Discount = "0.2977777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 462, Product = "SolarMax", Amount = 4140, Discount = "0.16", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 463, Product = "SolarMax", Amount = 4380, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 464, Product = "Eco Supreme", Amount = 3760, Discount = "0.12", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 465, Product = "Eco Supreme", Amount = 7410, Discount = "0.295", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 466, Product = "Eco Max", Amount = 4910, Discount = "0.036", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 467, Product = "SolarMax", Amount = 1720, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 468, Product = "EnviroCare", Amount = 6600, Discount = "0.2285714285714285714285714286", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 469, Product = "SolarOne", Amount = 5740, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 470, Product = "Eco Supreme", Amount = 5510, Discount = "0.245", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 471, Product = "Eco Max", Amount = 4920, Discount = "0.032", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 472, Product = "Eco Max", Amount = 9790, Discount = "0.084", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 473, Product = "SolarMax", Amount = 8510, Discount = "0.2177777777777777777777777778", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Banking", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 474, Product = "Eco Supreme", Amount = 1920, Discount = "0.04", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 475, Product = "Eco Supreme", Amount = 5640, Discount = "0.18", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 476, Product = "Eco Max", Amount = 4780, Discount = "0.088", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 477, Product = "Eco Supreme", Amount = 7260, Discount = "0.37", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 478, Product = "EnviroCare", Amount = 2820, Discount = "0.3885714285714285714285714286", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 479, Product = "SolarMax", Amount = 8680, Discount = "0.1422222222222222222222222222", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 480, Product = "Eco Max", Amount = 4530, Discount = "0.188", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 481, Product = "SolarMax", Amount = 6600, Discount = "0.0666666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 482, Product = "Eco Max", Amount = 7100, Discount = "0.16", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 483, Product = "SolarMax", Amount = 6090, Discount = "0.2933333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Renewable Supplies" }, new DataGridSale { Id = 484, Product = "Eco Max", Amount = 9860, Discount = "0.056", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 485, Product = "Eco Supreme", Amount = 3930, Discount = "0.035", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 486, Product = "SolarMax", Amount = 8800, Discount = "0.0888888888888888888888888889", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Apollo Inc" }, new DataGridSale { Id = 487, Product = "Eco Supreme", Amount = 5820, Discount = "0.09", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Beacon Systems" }, new DataGridSale { Id = 488, Product = "Eco Max", Amount = 7300, Discount = "0.08", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 489, Product = "SolarOne", Amount = 1140, Discount = "0.24", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Beacon Systems" }, new DataGridSale { Id = 490, Product = "SolarOne", Amount = 2690, Discount = "0.2066666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 491, Product = "Eco Max", Amount = 9760, Discount = "0.096", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 492, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-11T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 493, Product = "Eco Max", Amount = 9930, Discount = "0.028", SaleDate = "2024-05-11T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 494, Product = "Eco Supreme", Amount = 7890, Discount = "0.055", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 495, Product = "Eco Supreme", Amount = 7710, Discount = "0.145", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Arthur & Sons" }, new DataGridSale { Id = 496, Product = "Eco Supreme", Amount = 5430, Discount = "0.285", SaleDate = "2024-05-11T00:00:00", Region = "Africa", Sector = "Health", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 497, Product = "Eco Max", Amount = 6930, Discount = "0.228", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 498, Product = "SolarOne", Amount = 1270, Discount = "0.1533333333333333333333333333", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 499, Product = "SolarOne", Amount = 2900, Discount = "0.0666666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 500, Product = "Eco Supreme", Amount = 5280, Discount = "0.36", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 501, Product = "EnviroCare", Amount = 1360, Discount = "0.2228571428571428571428571429", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 502, Product = "Eco Supreme", Amount = 1270, Discount = "0.365", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 503, Product = "Eco Max", Amount = 7060, Discount = "0.176", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 504, Product = "Eco Supreme", Amount = 1750, Discount = "0.125", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 505, Product = "SolarOne", Amount = 950, Discount = "0.3666666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 506, Product = "SolarOne", Amount = 1130, Discount = "0.2466666666666666666666666667", SaleDate = "2024-05-11T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 507, Product = "Eco Max", Amount = 7230, Discount = "0.108", SaleDate = "2024-05-11T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 508, Product = "SolarOne", Amount = 4170, Discount = "0.22", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 509, Product = "Eco Max", Amount = 4810, Discount = "0.076", SaleDate = "2024-05-12T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 510, Product = "EnviroCare", Amount = 2790, Discount = "0.4057142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 511, Product = "Eco Supreme", Amount = 7420, Discount = "0.29", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 512, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 513, Product = "SolarMax", Amount = 4390, Discount = "0.0488888888888888888888888889", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 514, Product = "Eco Max", Amount = 4630, Discount = "0.148", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 515, Product = "Eco Supreme", Amount = 5890, Discount = "0.055", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 516, Product = "SolarMax", Amount = 3930, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 517, Product = "Eco Max", Amount = 9410, Discount = "0.236", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 518, Product = "Eco Max", Amount = 7060, Discount = "0.176", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 519, Product = "Eco Supreme", Amount = 1620, Discount = "0.19", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 520, Product = "Eco Max", Amount = 7010, Discount = "0.196", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 521, Product = "SolarMax", Amount = 4180, Discount = "0.1422222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 522, Product = "EnviroCare", Amount = 3080, Discount = "0.24", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 523, Product = "SolarMax", Amount = 4260, Discount = "0.1066666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 524, Product = "SolarMax", Amount = 6220, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 525, Product = "EnviroCare", Amount = 4580, Discount = "0.3828571428571428571428571429", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 526, Product = "SolarOne", Amount = 2410, Discount = "0.3933333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 527, Product = "Eco Max", Amount = 9860, Discount = "0.056", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 528, Product = "SolarMax", Amount = 8880, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 529, Product = "SolarMax", Amount = 1670, Discount = "0.2577777777777777777777777778", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 530, Product = "Eco Max", Amount = 6960, Discount = "0.216", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 531, Product = "Eco Supreme", Amount = 5790, Discount = "0.105", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 532, Product = "Eco Max", Amount = 7420, Discount = "0.032", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 533, Product = "EnviroCare", Amount = 6870, Discount = "0.0742857142857142857142857143", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 534, Product = "SolarOne", Amount = 2760, Discount = "0.16", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 535, Product = "Eco Supreme", Amount = 3510, Discount = "0.245", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 536, Product = "Eco Max", Amount = 6790, Discount = "0.284", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 537, Product = "EnviroCare", Amount = 6410, Discount = "0.3371428571428571428571428571", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 538, Product = "Eco Supreme", Amount = 3770, Discount = "0.115", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 539, Product = "SolarMax", Amount = 6580, Discount = "0.0755555555555555555555555556", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 540, Product = "Eco Max", Amount = 9500, Discount = "0.2", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 541, Product = "Eco Supreme", Amount = 5650, Discount = "0.175", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 542, Product = "Eco Max", Amount = 4630, Discount = "0.148", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 543, Product = "Eco Max", Amount = 9700, Discount = "0.12", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 544, Product = "SolarMax", Amount = 2140, Discount = "0.0488888888888888888888888889", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 545, Product = "Eco Max", Amount = 4950, Discount = "0.02", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 546, Product = "SolarMax", Amount = 8860, Discount = "0.0622222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 547, Product = "SolarMax", Amount = 1730, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 548, Product = "SolarMax", Amount = 8470, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 549, Product = "SolarMax", Amount = 4340, Discount = "0.0711111111111111111111111111", SaleDate = "2024-05-12T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 550, Product = "Eco Max", Amount = 2050, Discount = "0.18", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 551, Product = "Eco Max", Amount = 7390, Discount = "0.044", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 552, Product = "EnviroCare", Amount = 6570, Discount = "0.2457142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 553, Product = "Eco Supreme", Amount = 5500, Discount = "0.25", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 554, Product = "SolarMax", Amount = 2150, Discount = "0.0444444444444444444444444444", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 555, Product = "EnviroCare", Amount = 4610, Discount = "0.3657142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 556, Product = "Eco Max", Amount = 4410, Discount = "0.236", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Telecom", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 557, Product = "Eco Max", Amount = 2400, Discount = "0.04", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 558, Product = "SolarMax", Amount = 6560, Discount = "0.0844444444444444444444444444", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 559, Product = "SolarOne", Amount = 4450, Discount = "0.0333333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 560, Product = "SolarMax", Amount = 8810, Discount = "0.0844444444444444444444444444", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 561, Product = "Eco Supreme", Amount = 1720, Discount = "0.14", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 562, Product = "Eco Supreme", Amount = 3540, Discount = "0.23", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 563, Product = "Eco Supreme", Amount = 3910, Discount = "0.045", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 564, Product = "Eco Max", Amount = 6760, Discount = "0.296", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Renewable Supplies" }, new DataGridSale { Id = 565, Product = "Eco Supreme", Amount = 1820, Discount = "0.09", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 566, Product = "EnviroCare", Amount = 1400, Discount = "0.2", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 567, Product = "Eco Max", Amount = 1900, Discount = "0.24", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 568, Product = "SolarMax", Amount = 4020, Discount = "0.2133333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 569, Product = "SolarOne", Amount = 5500, Discount = "0.3333333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 570, Product = "Eco Supreme", Amount = 1750, Discount = "0.125", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 571, Product = "Eco Max", Amount = 7150, Discount = "0.14", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 572, Product = "Eco Supreme", Amount = 7740, Discount = "0.13", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 573, Product = "Eco Supreme", Amount = 3560, Discount = "0.22", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 574, Product = "SolarMax", Amount = 6270, Discount = "0.2133333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 575, Product = "SolarOne", Amount = 5920, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 576, Product = "SolarMax", Amount = 8370, Discount = "0.28", SaleDate = "2024-05-12T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 577, Product = "Eco Max", Amount = 9450, Discount = "0.22", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 578, Product = "Eco Max", Amount = 2340, Discount = "0.064", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 579, Product = "EnviroCare", Amount = 1520, Discount = "0.1314285714285714285714285714", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 580, Product = "EnviroCare", Amount = 5050, Discount = "0.1142857142857142857142857143", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 581, Product = "Eco Supreme", Amount = 1640, Discount = "0.18", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 582, Product = "Eco Max", Amount = 4930, Discount = "0.028", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 583, Product = "Eco Max", Amount = 7000, Discount = "0.2", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 584, Product = "Eco Supreme", Amount = 1860, Discount = "0.07", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 585, Product = "Eco Supreme", Amount = 1670, Discount = "0.165", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Apollo Inc" }, new DataGridSale { Id = 586, Product = "Eco Max", Amount = 2250, Discount = "0.1", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 587, Product = "Eco Supreme", Amount = 3680, Discount = "0.16", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 588, Product = "Eco Supreme", Amount = 5420, Discount = "0.29", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 589, Product = "Eco Max", Amount = 4900, Discount = "0.04", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 590, Product = "Eco Supreme", Amount = 3540, Discount = "0.23", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 591, Product = "Eco Max", Amount = 9420, Discount = "0.232", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 592, Product = "Eco Max", Amount = 4510, Discount = "0.196", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 593, Product = "Eco Supreme", Amount = 3740, Discount = "0.13", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 594, Product = "EnviroCare", Amount = 1570, Discount = "0.1028571428571428571428571429", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 595, Product = "SolarMax", Amount = 6270, Discount = "0.2133333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 596, Product = "Eco Supreme", Amount = 5260, Discount = "0.37", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 597, Product = "Eco Supreme", Amount = 1780, Discount = "0.11", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Renewable Supplies" }, new DataGridSale { Id = 598, Product = "Eco Max", Amount = 9820, Discount = "0.072", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 599, Product = "Eco Max", Amount = 2370, Discount = "0.052", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 600, Product = "Eco Max", Amount = 1920, Discount = "0.232", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 601, Product = "Eco Supreme", Amount = 3300, Discount = "0.35", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 602, Product = "Eco Max", Amount = 4630, Discount = "0.148", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 603, Product = "Eco Supreme", Amount = 1840, Discount = "0.08", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 604, Product = "SolarMax", Amount = 8590, Discount = "0.1822222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 605, Product = "SolarMax", Amount = 3860, Discount = "0.2844444444444444444444444444", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 606, Product = "SolarOne", Amount = 4100, Discount = "0.2666666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 607, Product = "Eco Max", Amount = 7090, Discount = "0.164", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 608, Product = "SolarMax", Amount = 6570, Discount = "0.08", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 609, Product = "Eco Max", Amount = 2120, Discount = "0.152", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 610, Product = "Eco Max", Amount = 4690, Discount = "0.124", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 611, Product = "Eco Supreme", Amount = 7350, Discount = "0.325", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 612, Product = "Eco Max", Amount = 4750, Discount = "0.1", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 613, Product = "Eco Max", Amount = 1940, Discount = "0.224", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Health", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 614, Product = "Eco Max", Amount = 7380, Discount = "0.048", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 615, Product = "Eco Supreme", Amount = 7290, Discount = "0.355", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Energy Systems" }, new DataGridSale { Id = 616, Product = "EnviroCare", Amount = 4830, Discount = "0.24", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 617, Product = "Eco Supreme", Amount = 7400, Discount = "0.3", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 618, Product = "Eco Max", Amount = 9360, Discount = "0.256", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 619, Product = "SolarOne", Amount = 4000, Discount = "0.3333333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 620, Product = "Eco Max", Amount = 4750, Discount = "0.1", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 621, Product = "Eco Supreme", Amount = 7690, Discount = "0.155", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 622, Product = "SolarMax", Amount = 8550, Discount = "0.2", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 623, Product = "SolarMax", Amount = 8310, Discount = "0.3066666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 624, Product = "Eco Supreme", Amount = 1890, Discount = "0.055", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 625, Product = "EnviroCare", Amount = 3130, Discount = "0.2114285714285714285714285714", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 626, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 627, Product = "EnviroCare", Amount = 6400, Discount = "0.3428571428571428571428571429", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 628, Product = "Eco Max", Amount = 1780, Discount = "0.288", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 629, Product = "SolarMax", Amount = 1810, Discount = "0.1955555555555555555555555556", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 630, Product = "Eco Supreme", Amount = 5270, Discount = "0.365", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 631, Product = "Eco Max", Amount = 4370, Discount = "0.252", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 632, Product = "SolarMax", Amount = 4130, Discount = "0.1644444444444444444444444444", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 633, Product = "SolarOne", Amount = 2350, Discount = "0.4333333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 634, Product = "Eco Max", Amount = 7120, Discount = "0.152", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 635, Product = "Eco Max", Amount = 4470, Discount = "0.212", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 636, Product = "Eco Max", Amount = 6930, Discount = "0.228", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 637, Product = "Eco Max", Amount = 9950, Discount = "0.02", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 638, Product = "SolarMax", Amount = 6180, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 639, Product = "Eco Max", Amount = 2310, Discount = "0.076", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 640, Product = "SolarMax", Amount = 1840, Discount = "0.1822222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 641, Product = "EnviroCare", Amount = 4840, Discount = "0.2342857142857142857142857143", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 642, Product = "Eco Supreme", Amount = 5840, Discount = "0.08", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 643, Product = "Eco Max", Amount = 6980, Discount = "0.208", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 644, Product = "EnviroCare", Amount = 1520, Discount = "0.1314285714285714285714285714", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 645, Product = "SolarMax", Amount = 8640, Discount = "0.16", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 646, Product = "Eco Max", Amount = 9850, Discount = "0.06", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 647, Product = "EnviroCare", Amount = 4540, Discount = "0.4057142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 648, Product = "SolarMax", Amount = 2170, Discount = "0.0355555555555555555555555556", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 649, Product = "EnviroCare", Amount = 6950, Discount = "0.0285714285714285714285714286", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 650, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 651, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 652, Product = "Eco Max", Amount = 4570, Discount = "0.172", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 653, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-12T00:00:00", Region = "Africa", Sector = "Manufacturing", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 654, Product = "Eco Max", Amount = 7380, Discount = "0.048", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Building Management Inc" }, new DataGridSale { Id = 655, Product = "Eco Supreme", Amount = 3690, Discount = "0.155", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 656, Product = "SolarMax", Amount = 6070, Discount = "0.3022222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "Apollo Inc" }, new DataGridSale { Id = 657, Product = "Eco Max", Amount = 2220, Discount = "0.112", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 658, Product = "SolarMax", Amount = 6600, Discount = "0.0666666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 659, Product = "Eco Max", Amount = 1850, Discount = "0.26", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 660, Product = "Eco Supreme", Amount = 3890, Discount = "0.055", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 661, Product = "Eco Max", Amount = 4560, Discount = "0.176", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 662, Product = "Eco Max", Amount = 9360, Discount = "0.256", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 663, Product = "Eco Max", Amount = 1980, Discount = "0.208", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 664, Product = "EnviroCare", Amount = 4870, Discount = "0.2171428571428571428571428571", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 665, Product = "Eco Supreme", Amount = 7640, Discount = "0.18", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 666, Product = "EnviroCare", Amount = 6920, Discount = "0.0457142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 667, Product = "Eco Max", Amount = 2400, Discount = "0.04", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 668, Product = "Eco Max", Amount = 1990, Discount = "0.204", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 669, Product = "Eco Max", Amount = 1770, Discount = "0.292", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 670, Product = "SolarMax", Amount = 6580, Discount = "0.0755555555555555555555555556", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 671, Product = "SolarMax", Amount = 4210, Discount = "0.1288888888888888888888888889", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Health", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 672, Product = "SolarMax", Amount = 1730, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 673, Product = "SolarMax", Amount = 4070, Discount = "0.1911111111111111111111111111", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 674, Product = "Eco Supreme", Amount = 3530, Discount = "0.235", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 675, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 676, Product = "Eco Max", Amount = 7340, Discount = "0.064", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 677, Product = "SolarMax", Amount = 8510, Discount = "0.2177777777777777777777777778", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 678, Product = "Eco Max", Amount = 9800, Discount = "0.08", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 679, Product = "Eco Supreme", Amount = 5750, Discount = "0.125", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 680, Product = "Eco Max", Amount = 9490, Discount = "0.204", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 681, Product = "Eco Max", Amount = 6950, Discount = "0.22", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 682, Product = "SolarMax", Amount = 1730, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 683, Product = "Eco Max", Amount = 9950, Discount = "0.02", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 684, Product = "Eco Max", Amount = 7050, Discount = "0.18", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 685, Product = "EnviroCare", Amount = 3130, Discount = "0.2114285714285714285714285714", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "Retail", Customer = "Global Services" }, new DataGridSale { Id = 686, Product = "Eco Max", Amount = 6990, Discount = "0.204", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Energy", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 687, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 688, Product = "SolarMax", Amount = 6520, Discount = "0.1022222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 689, Product = "SolarMax", Amount = 1600, Discount = "0.2888888888888888888888888889", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 690, Product = "Eco Max", Amount = 2160, Discount = "0.136", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 691, Product = "Eco Max", Amount = 9440, Discount = "0.224", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 692, Product = "Eco Max", Amount = 6950, Discount = "0.22", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Telecom", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 693, Product = "EnviroCare", Amount = 6310, Discount = "0.3942857142857142857142857143", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 694, Product = "Eco Max", Amount = 9860, Discount = "0.056", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 695, Product = "Eco Max", Amount = 2090, Discount = "0.164", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 696, Product = "Eco Supreme", Amount = 5820, Discount = "0.09", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 697, Product = "Eco Supreme", Amount = 5290, Discount = "0.355", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 698, Product = "Eco Max", Amount = 2130, Discount = "0.148", SaleDate = "2024-05-12T00:00:00", Region = "Africa", Sector = "Manufacturing", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 699, Product = "SolarMax", Amount = 1580, Discount = "0.2977777777777777777777777778", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Building Management Inc" }, new DataGridSale { Id = 700, Product = "EnviroCare Max", Amount = 8350, Discount = "0.0178571428571428571428571429", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 701, Product = "EnviroCare", Amount = 3200, Discount = "0.1714285714285714285714285714", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 702, Product = "Eco Max", Amount = 9360, Discount = "0.256", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 703, Product = "Eco Supreme", Amount = 3920, Discount = "0.04", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 704, Product = "Eco Max", Amount = 1820, Discount = "0.272", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 705, Product = "Eco Max", Amount = 2300, Discount = "0.08", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 706, Product = "Eco Max", Amount = 4440, Discount = "0.224", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 707, Product = "Eco Max", Amount = 2010, Discount = "0.196", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 708, Product = "Eco Max", Amount = 1840, Discount = "0.264", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 709, Product = "Eco Max", Amount = 7090, Discount = "0.164", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 710, Product = "SolarOne", Amount = 2750, Discount = "0.1666666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 711, Product = "Eco Max", Amount = 4640, Discount = "0.144", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 712, Product = "Eco Max", Amount = 9290, Discount = "0.284", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 713, Product = "Eco Supreme", Amount = 5620, Discount = "0.19", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 714, Product = "Eco Max", Amount = 4690, Discount = "0.124", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 715, Product = "Eco Supreme", Amount = 3350, Discount = "0.325", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 716, Product = "Eco Supreme", Amount = 3680, Discount = "0.16", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 717, Product = "EnviroCare", Amount = 5100, Discount = "0.0857142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 718, Product = "Eco Max", Amount = 9880, Discount = "0.048", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 719, Product = "Eco Supreme", Amount = 7390, Discount = "0.305", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 720, Product = "EnviroCare", Amount = 3210, Discount = "0.1657142857142857142857142857", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 721, Product = "SolarMax", Amount = 6340, Discount = "0.1822222222222222222222222222", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Health", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 722, Product = "Eco Max", Amount = 4530, Discount = "0.188", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 723, Product = "Eco Max", Amount = 4650, Discount = "0.14", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 724, Product = "Eco Max", Amount = 9370, Discount = "0.252", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 725, Product = "SolarMax", Amount = 6420, Discount = "0.1466666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 726, Product = "Eco Max", Amount = 9820, Discount = "0.072", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 727, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 728, Product = "Eco Max", Amount = 2280, Discount = "0.088", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 729, Product = "SolarOne", Amount = 5850, Discount = "0.1", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 730, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 731, Product = "Eco Max", Amount = 7230, Discount = "0.108", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 732, Product = "Eco Max", Amount = 6780, Discount = "0.288", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 733, Product = "Eco Max", Amount = 2020, Discount = "0.192", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 734, Product = "SolarMax", Amount = 6560, Discount = "0.0844444444444444444444444444", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 735, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Energy", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 736, Product = "Eco Supreme", Amount = 3870, Discount = "0.065", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 737, Product = "SolarOne", Amount = 5690, Discount = "0.2066666666666666666666666667", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 738, Product = "SolarOne", Amount = 1030, Discount = "0.3133333333333333333333333333", SaleDate = "2024-05-12T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 739, Product = "Eco Max", Amount = 9750, Discount = "0.1", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 740, Product = "Eco Max", Amount = 6800, Discount = "0.28", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 741, Product = "Eco Supreme", Amount = 3840, Discount = "0.08", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 742, Product = "Eco Max", Amount = 2430, Discount = "0.028", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 743, Product = "Eco Supreme", Amount = 3890, Discount = "0.055", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 744, Product = "Eco Max", Amount = 6980, Discount = "0.208", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 745, Product = "Eco Max", Amount = 7340, Discount = "0.064", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 746, Product = "Eco Max", Amount = 6760, Discount = "0.296", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 747, Product = "Eco Supreme", Amount = 5680, Discount = "0.16", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 748, Product = "Eco Max", Amount = 7350, Discount = "0.06", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 749, Product = "Eco Max", Amount = 9440, Discount = "0.224", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 750, Product = "Eco Max", Amount = 4900, Discount = "0.04", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 751, Product = "SolarMax", Amount = 6480, Discount = "0.12", SaleDate = "2024-05-12T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 752, Product = "Eco Max", Amount = 4270, Discount = "0.292", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 753, Product = "Eco Max", Amount = 9890, Discount = "0.044", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 754, Product = "Eco Supreme", Amount = 3410, Discount = "0.295", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 755, Product = "SolarMax", Amount = 1780, Discount = "0.2088888888888888888888888889", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 756, Product = "Eco Max", Amount = 2010, Discount = "0.196", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 757, Product = "Eco Max", Amount = 7450, Discount = "0.02", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 758, Product = "Eco Supreme", Amount = 7510, Discount = "0.245", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 759, Product = "Eco Max", Amount = 6760, Discount = "0.296", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 760, Product = "Eco Supreme", Amount = 3350, Discount = "0.325", SaleDate = "2024-05-12T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 761, Product = "Eco Max", Amount = 4290, Discount = "0.284", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 762, Product = "Eco Max", Amount = 4490, Discount = "0.204", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 763, Product = "EnviroCare", Amount = 1520, Discount = "0.1314285714285714285714285714", SaleDate = "2024-05-12T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 764, Product = "EnviroCare", Amount = 3450, Discount = "0.0285714285714285714285714286", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 765, Product = "SolarOne", Amount = 1440, Discount = "0.04", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 766, Product = "Eco Supreme", Amount = 5940, Discount = "0.03", SaleDate = "2024-05-12T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 767, Product = "Eco Supreme", Amount = 7400, Discount = "0.3", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 768, Product = "SolarMax", Amount = 3980, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-12T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 769, Product = "Eco Max", Amount = 9490, Discount = "0.204", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 770, Product = "SolarMax", Amount = 4000, Discount = "0.2222222222222222222222222222", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 771, Product = "Eco Max", Amount = 7360, Discount = "0.056", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 772, Product = "EnviroCare", Amount = 1310, Discount = "0.2514285714285714285714285714", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 773, Product = "Eco Max", Amount = 9890, Discount = "0.044", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 774, Product = "Eco Supreme", Amount = 1410, Discount = "0.295", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 775, Product = "Eco Max", Amount = 7320, Discount = "0.072", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 776, Product = "Eco Supreme", Amount = 5580, Discount = "0.21", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 777, Product = "Eco Supreme", Amount = 7340, Discount = "0.33", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 778, Product = "Eco Max", Amount = 7300, Discount = "0.08", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 779, Product = "SolarMax", Amount = 2080, Discount = "0.0755555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 780, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 781, Product = "Eco Max", Amount = 2390, Discount = "0.044", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Health Plus Inc" }, new DataGridSale { Id = 782, Product = "SolarMax", Amount = 8760, Discount = "0.1066666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 783, Product = "Eco Max", Amount = 6800, Discount = "0.28", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 784, Product = "SolarMax", Amount = 2040, Discount = "0.0933333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 785, Product = "SolarOne", Amount = 960, Discount = "0.36", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 786, Product = "EnviroCare", Amount = 3290, Discount = "0.12", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 787, Product = "Eco Supreme", Amount = 7400, Discount = "0.3", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 788, Product = "Eco Max", Amount = 7300, Discount = "0.08", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 789, Product = "Eco Supreme", Amount = 1420, Discount = "0.29", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 790, Product = "Eco Max", Amount = 9880, Discount = "0.048", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 791, Product = "Eco Max", Amount = 4480, Discount = "0.208", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 792, Product = "Eco Supreme", Amount = 5470, Discount = "0.265", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 793, Product = "Eco Supreme", Amount = 1740, Discount = "0.13", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 794, Product = "SolarOne", Amount = 4420, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 795, Product = "SolarOne", Amount = 1430, Discount = "0.0466666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 796, Product = "Eco Max", Amount = 2090, Discount = "0.164", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 797, Product = "Eco Max", Amount = 9690, Discount = "0.124", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 798, Product = "Eco Supreme", Amount = 5540, Discount = "0.23", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 799, Product = "Eco Max", Amount = 9330, Discount = "0.268", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 800, Product = "Eco Supreme", Amount = 1660, Discount = "0.17", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 801, Product = "SolarOne", Amount = 1400, Discount = "0.0666666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 802, Product = "Eco Max", Amount = 6800, Discount = "0.28", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 803, Product = "Eco Supreme", Amount = 3540, Discount = "0.23", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 804, Product = "Eco Supreme", Amount = 3400, Discount = "0.3", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 805, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 806, Product = "Eco Max", Amount = 7080, Discount = "0.168", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 807, Product = "SolarMax", Amount = 1810, Discount = "0.1955555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Renewable Supplies" }, new DataGridSale { Id = 808, Product = "EnviroCare", Amount = 4660, Discount = "0.3371428571428571428571428571", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 809, Product = "EnviroCare Max", Amount = 2440, Discount = "0.1285714285714285714285714286", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 810, Product = "Eco Max", Amount = 2310, Discount = "0.076", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 811, Product = "Eco Supreme", Amount = 5910, Discount = "0.045", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 812, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 813, Product = "Eco Max", Amount = 4270, Discount = "0.292", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Retail", Customer = "Apollo Inc" }, new DataGridSale { Id = 814, Product = "Eco Max", Amount = 7130, Discount = "0.148", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 815, Product = "SolarMax", Amount = 8650, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 816, Product = "EnviroCare", Amount = 1700, Discount = "0.0285714285714285714285714286", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 817, Product = "Eco Supreme", Amount = 5510, Discount = "0.245", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 818, Product = "Eco Supreme", Amount = 3910, Discount = "0.045", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 819, Product = "Eco Supreme", Amount = 1420, Discount = "0.29", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 820, Product = "Eco Max", Amount = 9420, Discount = "0.232", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 821, Product = "Eco Max", Amount = 4440, Discount = "0.224", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Health", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 822, Product = "Eco Max", Amount = 2340, Discount = "0.064", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 823, Product = "SolarMax", Amount = 3790, Discount = "0.3155555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 824, Product = "SolarOne", Amount = 3860, Discount = "0.4266666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 825, Product = "Eco Max", Amount = 7350, Discount = "0.06", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Telecom", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 826, Product = "SolarMax", Amount = 8350, Discount = "0.2888888888888888888888888889", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 827, Product = "SolarMax", Amount = 6040, Discount = "0.3155555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 828, Product = "Eco Max", Amount = 9740, Discount = "0.104", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 829, Product = "Eco Max", Amount = 4340, Discount = "0.264", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 830, Product = "Eco Max", Amount = 9370, Discount = "0.252", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 831, Product = "Eco Supreme", Amount = 7780, Discount = "0.11", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 832, Product = "Eco Supreme", Amount = 7750, Discount = "0.125", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 833, Product = "Eco Max", Amount = 9950, Discount = "0.02", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 834, Product = "Eco Supreme", Amount = 1440, Discount = "0.28", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 835, Product = "Eco Max", Amount = 1850, Discount = "0.26", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Health", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 836, Product = "Eco Supreme", Amount = 5720, Discount = "0.14", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 837, Product = "Eco Supreme", Amount = 1700, Discount = "0.15", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 838, Product = "SolarMax", Amount = 8860, Discount = "0.0622222222222222222222222222", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 839, Product = "Eco Max", Amount = 1760, Discount = "0.296", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 840, Product = "SolarOne", Amount = 4360, Discount = "0.0933333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 841, Product = "Eco Supreme", Amount = 7690, Discount = "0.155", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 842, Product = "Eco Max", Amount = 6770, Discount = "0.292", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 843, Product = "Eco Max", Amount = 4540, Discount = "0.184", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 844, Product = "Eco Max", Amount = 4720, Discount = "0.112", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 845, Product = "Eco Max", Amount = 4390, Discount = "0.244", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 846, Product = "Eco Supreme", Amount = 3810, Discount = "0.095", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 847, Product = "SolarMax", Amount = 8900, Discount = "0.0444444444444444444444444444", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 848, Product = "Eco Supreme", Amount = 5790, Discount = "0.105", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 849, Product = "Eco Max", Amount = 9740, Discount = "0.104", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 850, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 851, Product = "SolarMax", Amount = 8700, Discount = "0.1333333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 852, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Columbia Solar" }, new DataGridSale { Id = 853, Product = "Eco Supreme", Amount = 1560, Discount = "0.22", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 854, Product = "Eco Supreme", Amount = 7460, Discount = "0.27", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 855, Product = "Eco Max", Amount = 9310, Discount = "0.276", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 856, Product = "Eco Max", Amount = 4510, Discount = "0.196", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 857, Product = "Eco Supreme", Amount = 7830, Discount = "0.085", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Building Management Inc" }, new DataGridSale { Id = 858, Product = "SolarMax", Amount = 8340, Discount = "0.2933333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 859, Product = "Eco Max", Amount = 6940, Discount = "0.224", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 860, Product = "SolarMax", Amount = 4310, Discount = "0.0844444444444444444444444444", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 861, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 862, Product = "Eco Max", Amount = 7350, Discount = "0.06", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 863, Product = "SolarMax", Amount = 8600, Discount = "0.1777777777777777777777777778", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 864, Product = "Eco Max", Amount = 4610, Discount = "0.156", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 865, Product = "EnviroCare", Amount = 2900, Discount = "0.3428571428571428571428571429", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 866, Product = "Eco Supreme", Amount = 7370, Discount = "0.315", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 867, Product = "SolarMax", Amount = 6650, Discount = "0.0444444444444444444444444444", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Banking", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 868, Product = "SolarMax", Amount = 8740, Discount = "0.1155555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 869, Product = "Eco Max", Amount = 7100, Discount = "0.16", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Arthur & Sons" }, new DataGridSale { Id = 870, Product = "SolarMax", Amount = 4200, Discount = "0.1333333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Building Management Inc" }, new DataGridSale { Id = 871, Product = "Eco Supreme", Amount = 1330, Discount = "0.335", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 872, Product = "Eco Supreme", Amount = 3480, Discount = "0.26", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 873, Product = "Eco Max", Amount = 9420, Discount = "0.232", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 874, Product = "Eco Max", Amount = 2060, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Health", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 875, Product = "SolarMax", Amount = 3910, Discount = "0.2622222222222222222222222222", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 876, Product = "Eco Max", Amount = 7000, Discount = "0.2", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 877, Product = "SolarMax", Amount = 6170, Discount = "0.2577777777777777777777777778", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 878, Product = "SolarMax", Amount = 4380, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 879, Product = "Eco Supreme", Amount = 3850, Discount = "0.075", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 880, Product = "SolarMax", Amount = 6400, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 881, Product = "Eco Max", Amount = 2160, Discount = "0.136", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 882, Product = "Eco Max", Amount = 4770, Discount = "0.092", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 883, Product = "Eco Max", Amount = 6880, Discount = "0.248", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 884, Product = "Eco Max", Amount = 9520, Discount = "0.192", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 885, Product = "Eco Supreme", Amount = 3910, Discount = "0.045", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 886, Product = "Eco Max", Amount = 4820, Discount = "0.072", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 887, Product = "Eco Max", Amount = 9380, Discount = "0.248", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 888, Product = "EnviroCare", Amount = 4540, Discount = "0.4057142857142857142857142857", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 889, Product = "Eco Supreme", Amount = 7730, Discount = "0.135", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Columbia Solar" }, new DataGridSale { Id = 890, Product = "SolarMax", Amount = 8670, Discount = "0.1466666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 891, Product = "SolarMax", Amount = 6140, Discount = "0.2711111111111111111111111111", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 892, Product = "Eco Supreme", Amount = 3550, Discount = "0.225", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 893, Product = "Eco Supreme", Amount = 3780, Discount = "0.11", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "Global Services" }, new DataGridSale { Id = 894, Product = "Eco Supreme", Amount = 7280, Discount = "0.36", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 895, Product = "Eco Max", Amount = 6910, Discount = "0.236", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 896, Product = "Eco Max", Amount = 4300, Discount = "0.28", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 897, Product = "SolarMax", Amount = 1550, Discount = "0.3111111111111111111111111111", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Banking", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 898, Product = "Eco Max", Amount = 6820, Discount = "0.272", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 899, Product = "SolarOne", Amount = 1000, Discount = "0.3333333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Get Solar Inc" }, new DataGridSale { Id = 900, Product = "Eco Max", Amount = 7060, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 901, Product = "SolarMax", Amount = 8420, Discount = "0.2577777777777777777777777778", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 902, Product = "Eco Supreme", Amount = 5580, Discount = "0.21", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 903, Product = "Eco Supreme", Amount = 1820, Discount = "0.09", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 904, Product = "Eco Max", Amount = 7130, Discount = "0.148", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 905, Product = "Eco Max", Amount = 2360, Discount = "0.056", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 906, Product = "Eco Max", Amount = 9730, Discount = "0.108", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 907, Product = "Eco Max", Amount = 6850, Discount = "0.26", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 908, Product = "Eco Max", Amount = 7140, Discount = "0.144", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 909, Product = "SolarMax", Amount = 4130, Discount = "0.1644444444444444444444444444", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 910, Product = "Eco Max", Amount = 2060, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 911, Product = "Eco Max", Amount = 4560, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 912, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 913, Product = "SolarMax", Amount = 1530, Discount = "0.32", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 914, Product = "SolarMax", Amount = 1560, Discount = "0.3066666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 915, Product = "Eco Max", Amount = 4510, Discount = "0.196", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Health", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 916, Product = "SolarOne", Amount = 2400, Discount = "0.4", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 917, Product = "Eco Max", Amount = 9280, Discount = "0.288", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 918, Product = "SolarOne", Amount = 5460, Discount = "0.36", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 919, Product = "Eco Max", Amount = 2060, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 920, Product = "Eco Supreme", Amount = 5470, Discount = "0.265", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 921, Product = "Eco Max", Amount = 2450, Discount = "0.02", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 922, Product = "EnviroCare", Amount = 6880, Discount = "0.0685714285714285714285714286", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 923, Product = "Eco Supreme", Amount = 7300, Discount = "0.35", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 924, Product = "Eco Max", Amount = 2250, Discount = "0.1", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 925, Product = "Eco Max", Amount = 7220, Discount = "0.112", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 926, Product = "SolarOne", Amount = 3770, Discount = "0.4866666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 927, Product = "Eco Max", Amount = 4770, Discount = "0.092", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 928, Product = "SolarMax", Amount = 6590, Discount = "0.0711111111111111111111111111", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 929, Product = "Eco Max", Amount = 4560, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 930, Product = "SolarOne", Amount = 1340, Discount = "0.1066666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 931, Product = "Eco Supreme", Amount = 7430, Discount = "0.285", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 932, Product = "Eco Supreme", Amount = 1730, Discount = "0.135", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Telecom", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 933, Product = "Eco Max", Amount = 7340, Discount = "0.064", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 934, Product = "Eco Max", Amount = 2230, Discount = "0.108", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 935, Product = "Eco Max", Amount = 4580, Discount = "0.168", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 936, Product = "Eco Max", Amount = 2010, Discount = "0.196", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 937, Product = "EnviroCare", Amount = 3370, Discount = "0.0742857142857142857142857143", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 938, Product = "Eco Max", Amount = 4700, Discount = "0.12", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Health", Channel = "Direct", Customer = "Global Services" }, new DataGridSale { Id = 939, Product = "EnviroCare", Amount = 1490, Discount = "0.1485714285714285714285714286", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 940, Product = "Eco Supreme", Amount = 1470, Discount = "0.265", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 941, Product = "Eco Max", Amount = 4950, Discount = "0.02", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 942, Product = "Eco Max", Amount = 9400, Discount = "0.24", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 943, Product = "SolarMax", Amount = 4230, Discount = "0.12", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 944, Product = "Eco Max", Amount = 4870, Discount = "0.052", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 945, Product = "Eco Max", Amount = 9950, Discount = "0.02", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 946, Product = "Eco Supreme", Amount = 7670, Discount = "0.165", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 947, Product = "SolarMax", Amount = 2140, Discount = "0.0488888888888888888888888889", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 948, Product = "SolarMax", Amount = 1830, Discount = "0.1866666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 949, Product = "Eco Supreme", Amount = 3610, Discount = "0.195", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 950, Product = "Eco Max", Amount = 2310, Discount = "0.076", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 951, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 952, Product = "Eco Supreme", Amount = 7410, Discount = "0.295", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 953, Product = "Eco Max", Amount = 2080, Discount = "0.168", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 954, Product = "SolarMax", Amount = 2020, Discount = "0.1022222222222222222222222222", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 955, Product = "Eco Max", Amount = 7240, Discount = "0.104", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 956, Product = "Eco Max", Amount = 6810, Discount = "0.276", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 957, Product = "Eco Max", Amount = 4350, Discount = "0.26", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 958, Product = "SolarMax", Amount = 1860, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 959, Product = "Eco Max", Amount = 2360, Discount = "0.056", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 960, Product = "EnviroCare", Amount = 6850, Discount = "0.0857142857142857142857142857", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 961, Product = "Eco Supreme", Amount = 7280, Discount = "0.36", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 962, Product = "SolarMax", Amount = 2120, Discount = "0.0577777777777777777777777778", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Building Management Inc" }, new DataGridSale { Id = 963, Product = "Eco Supreme", Amount = 5350, Discount = "0.325", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 964, Product = "Eco Max", Amount = 4840, Discount = "0.064", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 965, Product = "Eco Max", Amount = 6980, Discount = "0.208", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 966, Product = "SolarMax", Amount = 1860, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 967, Product = "Eco Supreme", Amount = 5860, Discount = "0.07", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 968, Product = "Eco Supreme", Amount = 5430, Discount = "0.285", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 969, Product = "Eco Max", Amount = 7070, Discount = "0.172", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 970, Product = "SolarMax", Amount = 1840, Discount = "0.1822222222222222222222222222", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 971, Product = "SolarMax", Amount = 3970, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 972, Product = "Eco Supreme", Amount = 7850, Discount = "0.075", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Building Management Inc" }, new DataGridSale { Id = 973, Product = "SolarOne", Amount = 2870, Discount = "0.0866666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 974, Product = "Eco Supreme", Amount = 7330, Discount = "0.335", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 975, Product = "Eco Max", Amount = 2060, Discount = "0.176", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 976, Product = "SolarMax", Amount = 8700, Discount = "0.1333333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 977, Product = "SolarMax", Amount = 8520, Discount = "0.2133333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 978, Product = "Eco Max", Amount = 7360, Discount = "0.056", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 979, Product = "Eco Max", Amount = 7160, Discount = "0.136", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 980, Product = "EnviroCare", Amount = 5140, Discount = "0.0628571428571428571428571429", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 981, Product = "Eco Supreme", Amount = 1530, Discount = "0.235", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 982, Product = "Eco Max", Amount = 4950, Discount = "0.02", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 983, Product = "Eco Supreme", Amount = 5500, Discount = "0.25", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 984, Product = "SolarMax", Amount = 1620, Discount = "0.28", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 985, Product = "EnviroCare", Amount = 1570, Discount = "0.1028571428571428571428571429", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 986, Product = "Eco Max", Amount = 4330, Discount = "0.268", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 987, Product = "SolarOne", Amount = 1000, Discount = "0.3333333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 988, Product = "Eco Supreme", Amount = 1580, Discount = "0.21", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 989, Product = "Eco Supreme", Amount = 7880, Discount = "0.06", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 990, Product = "Eco Supreme", Amount = 3900, Discount = "0.05", SaleDate = "2024-05-13T00:00:00", Region = "Africa", Sector = "Telecom", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 991, Product = "SolarOne", Amount = 2870, Discount = "0.0866666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 992, Product = "Eco Max", Amount = 2190, Discount = "0.124", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 993, Product = "SolarMax", Amount = 6500, Discount = "0.1111111111111111111111111111", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 994, Product = "Eco Max", Amount = 4570, Discount = "0.172", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Renewable Supplies" }, new DataGridSale { Id = 995, Product = "Eco Supreme", Amount = 1790, Discount = "0.105", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 996, Product = "EnviroCare", Amount = 3070, Discount = "0.2457142857142857142857142857", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 997, Product = "SolarMax", Amount = 6360, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 998, Product = "Eco Max", Amount = 4580, Discount = "0.168", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 999, Product = "Eco Supreme", Amount = 1360, Discount = "0.32", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Health", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 1000, Product = "Eco Supreme", Amount = 7430, Discount = "0.285", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1001, Product = "SolarMax", Amount = 6260, Discount = "0.2177777777777777777777777778", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1002, Product = "SolarMax", Amount = 2160, Discount = "0.04", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 1003, Product = "Eco Supreme", Amount = 5430, Discount = "0.285", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1004, Product = "Eco Max", Amount = 4470, Discount = "0.212", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1005, Product = "Eco Supreme", Amount = 3430, Discount = "0.285", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 1006, Product = "SolarMax", Amount = 8280, Discount = "0.32", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1007, Product = "Eco Max", Amount = 6780, Discount = "0.288", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 1008, Product = "SolarMax", Amount = 4170, Discount = "0.1466666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1009, Product = "EnviroCare", Amount = 4990, Discount = "0.1485714285714285714285714286", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 1010, Product = "Eco Max", Amount = 4740, Discount = "0.104", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1011, Product = "Eco Max", Amount = 7240, Discount = "0.104", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 1012, Product = "Eco Max", Amount = 2350, Discount = "0.06", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1013, Product = "SolarMax", Amount = 4290, Discount = "0.0933333333333333333333333333", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1014, Product = "Eco Supreme", Amount = 5310, Discount = "0.345", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1015, Product = "Eco Supreme", Amount = 3840, Discount = "0.08", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1016, Product = "Eco Max", Amount = 4400, Discount = "0.24", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 1017, Product = "Eco Max", Amount = 2450, Discount = "0.02", SaleDate = "2024-05-13T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 1018, Product = "Eco Max", Amount = 9940, Discount = "0.024", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1019, Product = "SolarOne", Amount = 4190, Discount = "0.2066666666666666666666666667", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 1020, Product = "Eco Max", Amount = 1960, Discount = "0.216", SaleDate = "2024-05-13T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 1021, Product = "Eco Supreme", Amount = 3320, Discount = "0.34", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1022, Product = "Eco Max", Amount = 7100, Discount = "0.16", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1023, Product = "Eco Supreme", Amount = 5360, Discount = "0.32", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1024, Product = "Eco Max", Amount = 7410, Discount = "0.036", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1025, Product = "Eco Max", Amount = 2290, Discount = "0.084", SaleDate = "2024-05-13T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 1026, Product = "SolarMax", Amount = 1550, Discount = "0.3111111111111111111111111111", SaleDate = "2024-05-13T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1027, Product = "SolarMax", Amount = 1980, Discount = "0.12", SaleDate = "2024-05-13T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1028, Product = "SolarMax", Amount = 1720, Discount = "0.2355555555555555555555555556", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Energy", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 1029, Product = "Eco Max", Amount = 4500, Discount = "0.2", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1030, Product = "SolarMax", Amount = 8710, Discount = "0.1288888888888888888888888889", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1031, Product = "Eco Max", Amount = 7110, Discount = "0.156", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 1032, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1033, Product = "Eco Supreme", Amount = 7470, Discount = "0.265", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1034, Product = "Eco Max", Amount = 6810, Discount = "0.276", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1035, Product = "SolarOne", Amount = 5670, Discount = "0.22", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 1036, Product = "Eco Supreme", Amount = 7620, Discount = "0.19", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1037, Product = "EnviroCare", Amount = 3350, Discount = "0.0857142857142857142857142857", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1038, Product = "Eco Supreme", Amount = 1460, Discount = "0.27", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 1039, Product = "Eco Supreme", Amount = 3630, Discount = "0.185", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1040, Product = "Eco Max", Amount = 7150, Discount = "0.14", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Global Services" }, new DataGridSale { Id = 1041, Product = "EnviroCare", Amount = 3320, Discount = "0.1028571428571428571428571429", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1042, Product = "SolarOne", Amount = 3870, Discount = "0.42", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1043, Product = "Eco Max", Amount = 6760, Discount = "0.296", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1044, Product = "Eco Supreme", Amount = 5620, Discount = "0.19", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1045, Product = "SolarOne", Amount = 920, Discount = "0.3866666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 1046, Product = "Eco Max", Amount = 9420, Discount = "0.232", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1047, Product = "Eco Max", Amount = 9830, Discount = "0.068", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 1048, Product = "Eco Supreme", Amount = 3380, Discount = "0.31", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1049, Product = "SolarMax", Amount = 1670, Discount = "0.2577777777777777777777777778", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1050, Product = "Eco Max", Amount = 9830, Discount = "0.068", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 1051, Product = "SolarOne", Amount = 3870, Discount = "0.42", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 1052, Product = "Eco Max", Amount = 7240, Discount = "0.104", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1053, Product = "SolarMax", Amount = 6480, Discount = "0.12", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1054, Product = "Eco Max", Amount = 2130, Discount = "0.148", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1055, Product = "Eco Max", Amount = 4360, Discount = "0.256", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Retail", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1056, Product = "SolarMax", Amount = 8700, Discount = "0.1333333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1057, Product = "SolarMax", Amount = 3770, Discount = "0.3244444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1058, Product = "Eco Supreme", Amount = 5490, Discount = "0.255", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1059, Product = "Eco Max", Amount = 7160, Discount = "0.136", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1060, Product = "Eco Max", Amount = 1800, Discount = "0.28", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1061, Product = "SolarMax", Amount = 1730, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1062, Product = "Eco Max", Amount = 7180, Discount = "0.128", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1063, Product = "SolarMax", Amount = 8380, Discount = "0.2755555555555555555555555556", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1064, Product = "Eco Supreme", Amount = 7360, Discount = "0.32", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 1065, Product = "EnviroCare", Amount = 6820, Discount = "0.1028571428571428571428571429", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1066, Product = "Eco Supreme", Amount = 5510, Discount = "0.245", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1067, Product = "Eco Max", Amount = 4540, Discount = "0.184", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1068, Product = "EnviroCare", Amount = 1670, Discount = "0.0457142857142857142857142857", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1069, Product = "Eco Max", Amount = 9730, Discount = "0.108", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 1070, Product = "EnviroCare Max", Amount = 10910, Discount = "0.1035714285714285714285714286", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1071, Product = "Eco Max", Amount = 4820, Discount = "0.072", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1072, Product = "SolarOne", Amount = 5530, Discount = "0.3133333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1073, Product = "Eco Supreme", Amount = 7760, Discount = "0.12", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1074, Product = "Eco Supreme", Amount = 1690, Discount = "0.155", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 1075, Product = "EnviroCare", Amount = 1210, Discount = "0.3085714285714285714285714286", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1076, Product = "SolarOne", Amount = 1340, Discount = "0.1066666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 1077, Product = "Eco Max", Amount = 7450, Discount = "0.02", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 1078, Product = "Eco Supreme", Amount = 7660, Discount = "0.17", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 1079, Product = "SolarMax", Amount = 1900, Discount = "0.1555555555555555555555555556", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 1080, Product = "Eco Max", Amount = 9420, Discount = "0.232", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1081, Product = "Eco Max", Amount = 7140, Discount = "0.144", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1082, Product = "SolarMax", Amount = 8540, Discount = "0.2044444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 1083, Product = "Eco Max", Amount = 9780, Discount = "0.088", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 1084, Product = "Eco Supreme", Amount = 7790, Discount = "0.105", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 1085, Product = "Eco Max", Amount = 9890, Discount = "0.044", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1086, Product = "Eco Supreme", Amount = 7480, Discount = "0.26", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 1087, Product = "SolarMax", Amount = 3910, Discount = "0.2622222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 1088, Product = "SolarMax", Amount = 2130, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 1089, Product = "Eco Max", Amount = 9550, Discount = "0.18", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1090, Product = "SolarMax", Amount = 3770, Discount = "0.3244444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Supply Warehous" }, new DataGridSale { Id = 1091, Product = "Eco Max", Amount = 4530, Discount = "0.188", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1092, Product = "Eco Max", Amount = 2240, Discount = "0.104", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Building Management Inc" }, new DataGridSale { Id = 1093, Product = "EnviroCare", Amount = 1060, Discount = "0.3942857142857142857142857143", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1094, Product = "Eco Max", Amount = 9390, Discount = "0.244", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1095, Product = "SolarMax", Amount = 3980, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1096, Product = "Eco Supreme", Amount = 7730, Discount = "0.135", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 1097, Product = "Eco Max", Amount = 1860, Discount = "0.256", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1098, Product = "Eco Supreme", Amount = 7740, Discount = "0.13", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Health", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1099, Product = "Eco Max", Amount = 7080, Discount = "0.168", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1100, Product = "SolarMax", Amount = 3790, Discount = "0.3155555555555555555555555556", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1101, Product = "Eco Supreme", Amount = 7430, Discount = "0.285", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1102, Product = "SolarMax", Amount = 3760, Discount = "0.3288888888888888888888888889", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 1103, Product = "Eco Supreme", Amount = 3890, Discount = "0.055", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1104, Product = "EnviroCare", Amount = 1260, Discount = "0.28", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1105, Product = "EnviroCare", Amount = 3190, Discount = "0.1771428571428571428571428571", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1106, Product = "SolarMax", Amount = 8810, Discount = "0.0844444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1107, Product = "SolarMax", Amount = 8430, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 1108, Product = "Eco Max", Amount = 9820, Discount = "0.072", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Telecom", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1109, Product = "Eco Supreme", Amount = 5900, Discount = "0.05", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 1110, Product = "Eco Max", Amount = 9660, Discount = "0.136", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 1111, Product = "Eco Max", Amount = 9730, Discount = "0.108", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 1112, Product = "EnviroCare", Amount = 4630, Discount = "0.3542857142857142857142857143", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 1113, Product = "Eco Supreme", Amount = 1300, Discount = "0.35", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1114, Product = "Eco Max", Amount = 9310, Discount = "0.276", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 1115, Product = "SolarMax", Amount = 6250, Discount = "0.2222222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 1116, Product = "Eco Max", Amount = 4910, Discount = "0.036", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 1117, Product = "Eco Max", Amount = 1970, Discount = "0.212", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 1118, Product = "Eco Max", Amount = 4750, Discount = "0.1", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 1119, Product = "Eco Max", Amount = 1900, Discount = "0.24", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1120, Product = "Eco Supreme", Amount = 1500, Discount = "0.25", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1121, Product = "Eco Supreme", Amount = 5600, Discount = "0.2", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 1122, Product = "SolarMax", Amount = 4450, Discount = "0.0222222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 1123, Product = "SolarMax", Amount = 3770, Discount = "0.3244444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Health", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1124, Product = "EnviroCare", Amount = 3230, Discount = "0.1542857142857142857142857143", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1125, Product = "Eco Max", Amount = 7340, Discount = "0.064", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 1126, Product = "Eco Max", Amount = 9870, Discount = "0.052", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1127, Product = "Eco Max", Amount = 7410, Discount = "0.036", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1128, Product = "Eco Max", Amount = 9690, Discount = "0.124", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Supply Warehous" }, new DataGridSale { Id = 1129, Product = "SolarOne", Amount = 2340, Discount = "0.44", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1130, Product = "Eco Max", Amount = 6780, Discount = "0.288", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Global Services" }, new DataGridSale { Id = 1131, Product = "Eco Max", Amount = 2050, Discount = "0.18", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1132, Product = "Eco Max", Amount = 2290, Discount = "0.084", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Telecom", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1133, Product = "Eco Max", Amount = 4520, Discount = "0.192", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 1134, Product = "Eco Max", Amount = 7180, Discount = "0.128", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1135, Product = "Eco Supreme", Amount = 5770, Discount = "0.115", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 1136, Product = "Eco Supreme", Amount = 1490, Discount = "0.255", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1137, Product = "EnviroCare", Amount = 1170, Discount = "0.3314285714285714285714285714", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1138, Product = "Eco Max", Amount = 1770, Discount = "0.292", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 1139, Product = "Eco Max", Amount = 4830, Discount = "0.068", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1140, Product = "EnviroCare Max", Amount = 11040, Discount = "0.0571428571428571428571428571", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Health", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1141, Product = "SolarMax", Amount = 6180, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1142, Product = "Eco Supreme", Amount = 1290, Discount = "0.355", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1143, Product = "Eco Max", Amount = 9790, Discount = "0.084", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1144, Product = "Eco Supreme", Amount = 3600, Discount = "0.2", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1145, Product = "Eco Max", Amount = 1970, Discount = "0.212", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 1146, Product = "EnviroCare", Amount = 1690, Discount = "0.0342857142857142857142857143", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 1147, Product = "Eco Supreme", Amount = 1390, Discount = "0.305", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Banking", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 1148, Product = "Eco Supreme", Amount = 3640, Discount = "0.18", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 1149, Product = "SolarMax", Amount = 1850, Discount = "0.1777777777777777777777777778", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1150, Product = "SolarOne", Amount = 1160, Discount = "0.2266666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 1151, Product = "Eco Max", Amount = 7390, Discount = "0.044", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Retail", Customer = "Global Services" }, new DataGridSale { Id = 1152, Product = "Eco Max", Amount = 1890, Discount = "0.244", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 1153, Product = "EnviroCare", Amount = 4540, Discount = "0.4057142857142857142857142857", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1154, Product = "SolarMax", Amount = 1790, Discount = "0.2044444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 1155, Product = "Eco Supreme", Amount = 7370, Discount = "0.315", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1156, Product = "SolarMax", Amount = 8770, Discount = "0.1022222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1157, Product = "EnviroCare", Amount = 5160, Discount = "0.0514285714285714285714285714", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1158, Product = "Eco Max", Amount = 4510, Discount = "0.196", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1159, Product = "Eco Max", Amount = 1900, Discount = "0.24", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1160, Product = "Eco Max", Amount = 4760, Discount = "0.096", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Health", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1161, Product = "Eco Max", Amount = 6970, Discount = "0.212", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 1162, Product = "Eco Max", Amount = 1860, Discount = "0.256", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1163, Product = "Eco Supreme", Amount = 1940, Discount = "0.03", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 1164, Product = "SolarMax", Amount = 6480, Discount = "0.12", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1165, Product = "Eco Supreme", Amount = 3770, Discount = "0.115", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 1166, Product = "Eco Max", Amount = 9790, Discount = "0.084", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1167, Product = "Eco Supreme", Amount = 7870, Discount = "0.065", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1168, Product = "SolarMax", Amount = 4380, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 1169, Product = "Eco Supreme", Amount = 3800, Discount = "0.1", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1170, Product = "Eco Max", Amount = 4750, Discount = "0.1", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 1171, Product = "Eco Supreme", Amount = 5800, Discount = "0.1", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 1172, Product = "Eco Supreme", Amount = 5440, Discount = "0.28", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 1173, Product = "Eco Max", Amount = 4770, Discount = "0.092", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Columbia Solar" }, new DataGridSale { Id = 1174, Product = "SolarMax", Amount = 6250, Discount = "0.2222222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1175, Product = "SolarMax", Amount = 4120, Discount = "0.1688888888888888888888888889", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1176, Product = "Eco Max", Amount = 4380, Discount = "0.248", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1177, Product = "Eco Max", Amount = 9440, Discount = "0.224", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 1178, Product = "Eco Max", Amount = 4600, Discount = "0.16", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Smith & Co" }, new DataGridSale { Id = 1179, Product = "SolarMax", Amount = 2080, Discount = "0.0755555555555555555555555556", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1180, Product = "EnviroCare", Amount = 3170, Discount = "0.1885714285714285714285714286", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 1181, Product = "SolarMax", Amount = 8450, Discount = "0.2444444444444444444444444444", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 1182, Product = "Eco Max", Amount = 6980, Discount = "0.208", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1183, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1184, Product = "Eco Supreme", Amount = 7840, Discount = "0.08", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1185, Product = "Eco Supreme", Amount = 3900, Discount = "0.05", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1186, Product = "Eco Max", Amount = 7110, Discount = "0.156", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1187, Product = "EnviroCare", Amount = 5170, Discount = "0.0457142857142857142857142857", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 1188, Product = "Eco Max", Amount = 4590, Discount = "0.164", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1189, Product = "EnviroCare", Amount = 6560, Discount = "0.2514285714285714285714285714", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 1190, Product = "Eco Max", Amount = 4300, Discount = "0.28", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Health", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 1191, Product = "SolarMax", Amount = 4010, Discount = "0.2177777777777777777777777778", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 1192, Product = "Eco Supreme", Amount = 7710, Discount = "0.145", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 1193, Product = "Eco Max", Amount = 7050, Discount = "0.18", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1194, Product = "Eco Max", Amount = 4790, Discount = "0.084", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1195, Product = "Eco Max", Amount = 7400, Discount = "0.04", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1196, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1197, Product = "Eco Max", Amount = 4510, Discount = "0.196", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 1198, Product = "EnviroCare", Amount = 4720, Discount = "0.3028571428571428571428571429", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 1199, Product = "Eco Max", Amount = 4860, Discount = "0.056", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1200, Product = "Eco Max", Amount = 1950, Discount = "0.22", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1201, Product = "Eco Max", Amount = 9880, Discount = "0.048", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1202, Product = "Eco Max", Amount = 2030, Discount = "0.188", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 1203, Product = "Eco Max", Amount = 2150, Discount = "0.14", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1204, Product = "Eco Supreme", Amount = 7790, Discount = "0.105", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1205, Product = "Eco Supreme", Amount = 1550, Discount = "0.225", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 1206, Product = "EnviroCare", Amount = 2880, Discount = "0.3542857142857142857142857143", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1207, Product = "Eco Max", Amount = 7110, Discount = "0.156", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1208, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 1209, Product = "SolarMax", Amount = 1800, Discount = "0.2", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1210, Product = "SolarMax", Amount = 3960, Discount = "0.24", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1211, Product = "Eco Supreme", Amount = 3260, Discount = "0.37", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1212, Product = "Eco Supreme", Amount = 5360, Discount = "0.32", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 1213, Product = "EnviroCare", Amount = 4680, Discount = "0.3257142857142857142857142857", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Health", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 1214, Product = "Eco Max", Amount = 9730, Discount = "0.108", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 1215, Product = "Eco Supreme", Amount = 3620, Discount = "0.19", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1216, Product = "Eco Max", Amount = 9810, Discount = "0.076", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 1217, Product = "EnviroCare", Amount = 4880, Discount = "0.2114285714285714285714285714", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1218, Product = "Eco Supreme", Amount = 5540, Discount = "0.23", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1219, Product = "SolarOne", Amount = 1090, Discount = "0.2733333333333333333333333333", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 1220, Product = "EnviroCare", Amount = 2780, Discount = "0.4114285714285714285714285714", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 1221, Product = "SolarMax", Amount = 1560, Discount = "0.3066666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1222, Product = "Eco Max", Amount = 9760, Discount = "0.096", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1223, Product = "Eco Max", Amount = 4540, Discount = "0.184", SaleDate = "2024-05-14T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1224, Product = "EnviroCare", Amount = 5180, Discount = "0.04", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1225, Product = "SolarMax", Amount = 6330, Discount = "0.1866666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1226, Product = "Eco Supreme", Amount = 7370, Discount = "0.315", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1227, Product = "SolarMax", Amount = 6350, Discount = "0.1777777777777777777777777778", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1228, Product = "Eco Max", Amount = 9450, Discount = "0.22", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1229, Product = "Eco Max", Amount = 4630, Discount = "0.148", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Building Management Inc" }, new DataGridSale { Id = 1230, Product = "Eco Supreme", Amount = 3430, Discount = "0.285", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1231, Product = "Eco Max", Amount = 7310, Discount = "0.076", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1232, Product = "SolarMax", Amount = 8950, Discount = "0.0222222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1233, Product = "Eco Supreme", Amount = 7340, Discount = "0.33", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1234, Product = "SolarMax", Amount = 8800, Discount = "0.0888888888888888888888888889", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1235, Product = "Eco Max", Amount = 7200, Discount = "0.12", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1236, Product = "Eco Supreme", Amount = 7600, Discount = "0.2", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1237, Product = "EnviroCare", Amount = 4510, Discount = "0.4228571428571428571428571429", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 1238, Product = "EnviroCare", Amount = 6610, Discount = "0.2228571428571428571428571429", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 1239, Product = "Eco Max", Amount = 4840, Discount = "0.064", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 1240, Product = "Eco Max", Amount = 4800, Discount = "0.08", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 1241, Product = "Eco Supreme", Amount = 7950, Discount = "0.025", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1242, Product = "SolarMax", Amount = 2110, Discount = "0.0622222222222222222222222222", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1243, Product = "Eco Max", Amount = 6870, Discount = "0.252", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1244, Product = "Eco Max", Amount = 4550, Discount = "0.18", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Retail", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1245, Product = "Eco Supreme", Amount = 5670, Discount = "0.165", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1246, Product = "SolarOne", Amount = 5870, Discount = "0.0866666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1247, Product = "EnviroCare", Amount = 5110, Discount = "0.08", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1248, Product = "Eco Supreme", Amount = 1290, Discount = "0.355", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 1249, Product = "SolarMax", Amount = 8730, Discount = "0.12", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1250, Product = "EnviroCare", Amount = 2910, Discount = "0.3371428571428571428571428571", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1251, Product = "SolarMax", Amount = 4410, Discount = "0.04", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 1252, Product = "SolarMax", Amount = 6140, Discount = "0.2711111111111111111111111111", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1253, Product = "Eco Max", Amount = 4520, Discount = "0.192", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Environment Solar" }, new DataGridSale { Id = 1254, Product = "Eco Supreme", Amount = 5680, Discount = "0.16", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1255, Product = "Eco Max", Amount = 2300, Discount = "0.08", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 1256, Product = "Eco Supreme", Amount = 7720, Discount = "0.14", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1257, Product = "Eco Supreme", Amount = 5500, Discount = "0.25", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1258, Product = "Eco Supreme", Amount = 5400, Discount = "0.3", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1259, Product = "SolarMax", Amount = 3980, Discount = "0.2311111111111111111111111111", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1260, Product = "Eco Supreme", Amount = 5650, Discount = "0.175", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 1261, Product = "Eco Max", Amount = 9560, Discount = "0.176", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1262, Product = "Eco Max", Amount = 4900, Discount = "0.04", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 1263, Product = "Eco Max", Amount = 4800, Discount = "0.08", SaleDate = "2024-05-14T00:00:00", Region = "South America", Sector = "Telecom", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1264, Product = "Eco Max", Amount = 1910, Discount = "0.236", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1265, Product = "Eco Supreme", Amount = 7790, Discount = "0.105", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1266, Product = "Eco Max", Amount = 7420, Discount = "0.032", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 1267, Product = "Eco Max", Amount = 1830, Discount = "0.268", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1268, Product = "SolarMax", Amount = 1740, Discount = "0.2266666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 1269, Product = "Eco Max", Amount = 9570, Discount = "0.172", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1270, Product = "Eco Supreme", Amount = 7530, Discount = "0.235", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1271, Product = "Eco Max", Amount = 1980, Discount = "0.208", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 1272, Product = "Eco Max", Amount = 4530, Discount = "0.188", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 1273, Product = "EnviroCare", Amount = 6530, Discount = "0.2685714285714285714285714286", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1274, Product = "Eco Max", Amount = 9670, Discount = "0.132", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 1275, Product = "EnviroCare Max", Amount = 8220, Discount = "0.0642857142857142857142857143", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1276, Product = "Eco Supreme", Amount = 7670, Discount = "0.165", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 1277, Product = "Eco Supreme", Amount = 1800, Discount = "0.1", SaleDate = "2024-05-14T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1278, Product = "SolarMax", Amount = 4260, Discount = "0.1066666666666666666666666667", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 1279, Product = "SolarMax", Amount = 2000, Discount = "0.1111111111111111111111111111", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 1280, Product = "Eco Max", Amount = 4310, Discount = "0.276", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 1281, Product = "Eco Max", Amount = 9800, Discount = "0.08", SaleDate = "2024-05-14T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1282, Product = "Eco Supreme", Amount = 5570, Discount = "0.215", SaleDate = "2024-05-14T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1283, Product = "Eco Max", Amount = 7190, Discount = "0.124", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1284, Product = "Eco Max", Amount = 9780, Discount = "0.088", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1285, Product = "Eco Supreme", Amount = 3400, Discount = "0.3", SaleDate = "2024-05-14T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 1286, Product = "Eco Max", Amount = 2100, Discount = "0.16", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1287, Product = "Eco Supreme", Amount = 5510, Discount = "0.245", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1288, Product = "SolarMax", Amount = 8380, Discount = "0.2755555555555555555555555556", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1289, Product = "SolarMax", Amount = 1810, Discount = "0.1955555555555555555555555556", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 1290, Product = "Eco Max", Amount = 4650, Discount = "0.14", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 1291, Product = "Eco Max", Amount = 4740, Discount = "0.104", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1292, Product = "SolarOne", Amount = 5810, Discount = "0.1266666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1293, Product = "Eco Max", Amount = 9780, Discount = "0.088", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1294, Product = "SolarMax", Amount = 6540, Discount = "0.0933333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1295, Product = "Eco Max", Amount = 4640, Discount = "0.144", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Discovery Systems" }, new DataGridSale { Id = 1296, Product = "SolarMax", Amount = 4210, Discount = "0.1288888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1297, Product = "EnviroCare", Amount = 1380, Discount = "0.2114285714285714285714285714", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1298, Product = "Eco Max", Amount = 4730, Discount = "0.108", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1299, Product = "Eco Supreme", Amount = 3540, Discount = "0.23", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 1300, Product = "Eco Max", Amount = 2120, Discount = "0.152", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 1301, Product = "SolarMax", Amount = 6480, Discount = "0.12", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1302, Product = "SolarMax", Amount = 8700, Discount = "0.1333333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1303, Product = "EnviroCare", Amount = 4660, Discount = "0.3371428571428571428571428571", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1304, Product = "SolarMax", Amount = 6630, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 1305, Product = "Eco Max", Amount = 2070, Discount = "0.172", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1306, Product = "SolarMax", Amount = 1630, Discount = "0.2755555555555555555555555556", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 1307, Product = "SolarMax", Amount = 4110, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Banking", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1308, Product = "EnviroCare", Amount = 5040, Discount = "0.12", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Telecom", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1309, Product = "Eco Supreme", Amount = 5640, Discount = "0.18", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1310, Product = "Eco Supreme", Amount = 7290, Discount = "0.355", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 1311, Product = "Eco Supreme", Amount = 5720, Discount = "0.14", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 1312, Product = "SolarMax", Amount = 6390, Discount = "0.16", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1313, Product = "Eco Max", Amount = 4400, Discount = "0.24", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1314, Product = "EnviroCare", Amount = 6570, Discount = "0.2457142857142857142857142857", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1315, Product = "Eco Max", Amount = 4790, Discount = "0.084", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1316, Product = "Eco Max", Amount = 6940, Discount = "0.224", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1317, Product = "Eco Max", Amount = 1870, Discount = "0.252", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1318, Product = "SolarMax", Amount = 6480, Discount = "0.12", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1319, Product = "Eco Max", Amount = 4930, Discount = "0.028", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1320, Product = "Eco Max", Amount = 7360, Discount = "0.056", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1321, Product = "Eco Supreme", Amount = 7340, Discount = "0.33", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "VARs", Customer = "System Integrators" }, new DataGridSale { Id = 1322, Product = "Eco Max", Amount = 7450, Discount = "0.02", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1323, Product = "Eco Max", Amount = 7220, Discount = "0.112", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1324, Product = "Eco Supreme", Amount = 1890, Discount = "0.055", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1325, Product = "SolarMax", Amount = 4360, Discount = "0.0622222222222222222222222222", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1326, Product = "Eco Max", Amount = 9500, Discount = "0.2", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 1327, Product = "SolarOne", Amount = 2810, Discount = "0.1266666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 1328, Product = "Eco Max", Amount = 2430, Discount = "0.028", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Building Management Inc" }, new DataGridSale { Id = 1329, Product = "Eco Max", Amount = 2420, Discount = "0.032", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1330, Product = "Eco Supreme", Amount = 1790, Discount = "0.105", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1331, Product = "Eco Supreme", Amount = 1700, Discount = "0.15", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1332, Product = "Eco Supreme", Amount = 5700, Discount = "0.15", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 1333, Product = "Eco Max", Amount = 9490, Discount = "0.204", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 1334, Product = "SolarMax", Amount = 1890, Discount = "0.16", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 1335, Product = "Eco Max", Amount = 2110, Discount = "0.156", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 1336, Product = "Eco Supreme", Amount = 7470, Discount = "0.265", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 1337, Product = "Eco Max", Amount = 9400, Discount = "0.24", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1338, Product = "Eco Supreme", Amount = 5580, Discount = "0.21", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1339, Product = "Eco Max", Amount = 4610, Discount = "0.156", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1340, Product = "EnviroCare", Amount = 1020, Discount = "0.4171428571428571428571428571", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1341, Product = "EnviroCare", Amount = 6610, Discount = "0.2228571428571428571428571429", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1342, Product = "Eco Max", Amount = 2410, Discount = "0.036", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1343, Product = "EnviroCare", Amount = 4690, Discount = "0.32", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 1344, Product = "Eco Max", Amount = 4390, Discount = "0.244", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Apollo Inc" }, new DataGridSale { Id = 1345, Product = "Eco Supreme", Amount = 3760, Discount = "0.12", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1346, Product = "Eco Supreme", Amount = 7840, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1347, Product = "SolarMax", Amount = 6620, Discount = "0.0577777777777777777777777778", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1348, Product = "Eco Max", Amount = 9310, Discount = "0.276", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 1349, Product = "SolarMax", Amount = 8280, Discount = "0.32", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 1350, Product = "Eco Max", Amount = 9830, Discount = "0.068", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1351, Product = "Eco Supreme", Amount = 7740, Discount = "0.13", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 1352, Product = "Eco Supreme", Amount = 7570, Discount = "0.215", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1353, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1354, Product = "Eco Max", Amount = 9510, Discount = "0.196", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1355, Product = "Eco Max", Amount = 1800, Discount = "0.28", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 1356, Product = "Eco Supreme", Amount = 3280, Discount = "0.36", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1357, Product = "Eco Max", Amount = 2200, Discount = "0.12", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 1358, Product = "Eco Supreme", Amount = 7440, Discount = "0.28", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 1359, Product = "SolarMax", Amount = 6500, Discount = "0.1111111111111111111111111111", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 1360, Product = "SolarMax", Amount = 8510, Discount = "0.2177777777777777777777777778", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Health", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1361, Product = "Eco Max", Amount = 1880, Discount = "0.248", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Gemini Stores" }, new DataGridSale { Id = 1362, Product = "Eco Supreme", Amount = 5730, Discount = "0.135", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1363, Product = "Eco Max", Amount = 1840, Discount = "0.264", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1364, Product = "Eco Max", Amount = 7080, Discount = "0.168", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1365, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1366, Product = "Eco Supreme", Amount = 5460, Discount = "0.27", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1367, Product = "Eco Max", Amount = 7060, Discount = "0.176", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1368, Product = "Eco Max", Amount = 9400, Discount = "0.24", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1369, Product = "Eco Max", Amount = 9630, Discount = "0.148", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Environment Solar" }, new DataGridSale { Id = 1370, Product = "Eco Max", Amount = 1990, Discount = "0.204", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1371, Product = "Eco Max", Amount = 9590, Discount = "0.164", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1372, Product = "Eco Supreme", Amount = 5260, Discount = "0.37", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1373, Product = "Eco Max", Amount = 2230, Discount = "0.108", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Manufacturing", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1374, Product = "Eco Max", Amount = 4420, Discount = "0.232", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 1375, Product = "Eco Max", Amount = 4280, Discount = "0.288", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Manufacturing", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 1376, Product = "SolarMax", Amount = 8400, Discount = "0.2666666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "McCord Builders" }, new DataGridSale { Id = 1377, Product = "SolarMax", Amount = 6600, Discount = "0.0666666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1378, Product = "EnviroCare", Amount = 6820, Discount = "0.1028571428571428571428571429", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1379, Product = "Eco Supreme", Amount = 5260, Discount = "0.37", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Columbia Solar" }, new DataGridSale { Id = 1380, Product = "Eco Supreme", Amount = 1500, Discount = "0.25", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1381, Product = "Eco Max", Amount = 7360, Discount = "0.056", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Resellers", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1382, Product = "SolarMax", Amount = 4410, Discount = "0.04", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1383, Product = "Eco Max", Amount = 4900, Discount = "0.04", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1384, Product = "Eco Max", Amount = 7400, Discount = "0.04", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "System Integrators" }, new DataGridSale { Id = 1385, Product = "SolarOne", Amount = 5650, Discount = "0.2333333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1386, Product = "SolarMax", Amount = 6340, Discount = "0.1822222222222222222222222222", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1387, Product = "SolarMax", Amount = 1940, Discount = "0.1377777777777777777777777778", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Consultants", Customer = "Gemini Stores" }, new DataGridSale { Id = 1388, Product = "Eco Supreme", Amount = 1550, Discount = "0.225", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1389, Product = "EnviroCare", Amount = 2860, Discount = "0.3657142857142857142857142857", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Building Management Inc" }, new DataGridSale { Id = 1390, Product = "Eco Max", Amount = 9480, Discount = "0.208", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Apollo Inc" }, new DataGridSale { Id = 1391, Product = "Eco Max", Amount = 1960, Discount = "0.216", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Renewable Supplies" }, new DataGridSale { Id = 1392, Product = "Eco Max", Amount = 4880, Discount = "0.048", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1393, Product = "Eco Supreme", Amount = 1880, Discount = "0.06", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Supply Warehous" }, new DataGridSale { Id = 1394, Product = "SolarMax", Amount = 1930, Discount = "0.1422222222222222222222222222", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Retail", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1395, Product = "SolarMax", Amount = 3910, Discount = "0.2622222222222222222222222222", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1396, Product = "EnviroCare", Amount = 3270, Discount = "0.1314285714285714285714285714", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 1397, Product = "Eco Supreme", Amount = 1760, Discount = "0.12", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Discovery Systems" }, new DataGridSale { Id = 1398, Product = "Eco Max", Amount = 9570, Discount = "0.172", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Energy Systems" }, new DataGridSale { Id = 1399, Product = "SolarMax", Amount = 3850, Discount = "0.2888888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1400, Product = "Eco Max", Amount = 7300, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 1401, Product = "Eco Max", Amount = 4540, Discount = "0.184", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1402, Product = "Eco Max", Amount = 2000, Discount = "0.2", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1403, Product = "SolarMax", Amount = 3880, Discount = "0.2755555555555555555555555556", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Manufacturing", Channel = "Resellers", Customer = "Environment Solar" }, new DataGridSale { Id = 1404, Product = "SolarOne", Amount = 4240, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1405, Product = "SolarMax", Amount = 4110, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1406, Product = "SolarMax", Amount = 4020, Discount = "0.2133333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1407, Product = "Eco Supreme", Amount = 3640, Discount = "0.18", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1408, Product = "Eco Max", Amount = 4680, Discount = "0.128", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1409, Product = "Eco Max", Amount = 9760, Discount = "0.096", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1410, Product = "SolarOne", Amount = 1310, Discount = "0.1266666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1411, Product = "Eco Supreme", Amount = 3870, Discount = "0.065", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1412, Product = "Eco Max", Amount = 2100, Discount = "0.16", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Columbia Solar" }, new DataGridSale { Id = 1413, Product = "Eco Supreme", Amount = 5430, Discount = "0.285", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1414, Product = "Eco Supreme", Amount = 7490, Discount = "0.255", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1415, Product = "Eco Max", Amount = 7210, Discount = "0.116", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1416, Product = "Eco Max", Amount = 9390, Discount = "0.244", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1417, Product = "Eco Max", Amount = 6800, Discount = "0.28", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Insurance", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 1418, Product = "Eco Max", Amount = 2320, Discount = "0.072", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1419, Product = "SolarMax", Amount = 4380, Discount = "0.0533333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1420, Product = "Eco Supreme", Amount = 3850, Discount = "0.075", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Discovery Systems" }, new DataGridSale { Id = 1421, Product = "Eco Max", Amount = 6820, Discount = "0.272", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1422, Product = "Eco Supreme", Amount = 5660, Discount = "0.17", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1423, Product = "Eco Max", Amount = 6810, Discount = "0.276", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1424, Product = "SolarOne", Amount = 2870, Discount = "0.0866666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1425, Product = "Eco Max", Amount = 2420, Discount = "0.032", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "VARs", Customer = "Energy Systems" }, new DataGridSale { Id = 1426, Product = "EnviroCare", Amount = 6900, Discount = "0.0571428571428571428571428571", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Retail", Customer = "McCord Builders" }, new DataGridSale { Id = 1427, Product = "Eco Max", Amount = 2260, Discount = "0.096", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 1428, Product = "Eco Max", Amount = 1960, Discount = "0.216", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Consultants", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1429, Product = "Eco Max", Amount = 7390, Discount = "0.044", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Resellers", Customer = "McCord Builders" }, new DataGridSale { Id = 1430, Product = "SolarMax", Amount = 1590, Discount = "0.2933333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1431, Product = "Eco Supreme", Amount = 3390, Discount = "0.305", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1432, Product = "Eco Supreme", Amount = 5700, Discount = "0.15", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1433, Product = "Eco Supreme", Amount = 5280, Discount = "0.36", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Mercury Solar" }, new DataGridSale { Id = 1434, Product = "Eco Max", Amount = 9320, Discount = "0.272", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1435, Product = "Eco Supreme", Amount = 5840, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Building Management Inc" }, new DataGridSale { Id = 1436, Product = "Eco Max", Amount = 6770, Discount = "0.292", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1437, Product = "SolarOne", Amount = 5360, Discount = "0.4266666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Manufacturing", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 1438, Product = "Eco Supreme", Amount = 5530, Discount = "0.235", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Retail", Customer = "Environment Solar" }, new DataGridSale { Id = 1439, Product = "Eco Supreme", Amount = 7510, Discount = "0.245", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Beacon Systems" }, new DataGridSale { Id = 1440, Product = "Eco Max", Amount = 7430, Discount = "0.028", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 1441, Product = "Eco Max", Amount = 4820, Discount = "0.072", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1442, Product = "Eco Supreme", Amount = 5420, Discount = "0.29", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Resellers", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1443, Product = "Eco Supreme", Amount = 5920, Discount = "0.04", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1444, Product = "Eco Max", Amount = 4890, Discount = "0.044", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 1445, Product = "Eco Max", Amount = 7420, Discount = "0.032", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 1446, Product = "SolarMax", Amount = 4390, Discount = "0.0488888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1447, Product = "SolarMax", Amount = 8610, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Health", Channel = "Resellers", Customer = "Gemini Stores" }, new DataGridSale { Id = 1448, Product = "SolarMax", Amount = 8870, Discount = "0.0577777777777777777777777778", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1449, Product = "Eco Supreme", Amount = 1800, Discount = "0.1", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1450, Product = "SolarOne", Amount = 1150, Discount = "0.2333333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Discovery Systems" }, new DataGridSale { Id = 1451, Product = "Eco Max", Amount = 4410, Discount = "0.236", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Retail", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1452, Product = "Eco Max", Amount = 9480, Discount = "0.208", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "VARs", Customer = "Discovery Systems" }, new DataGridSale { Id = 1453, Product = "SolarMax", Amount = 4110, Discount = "0.1733333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Market Eco" }, new DataGridSale { Id = 1454, Product = "Eco Max", Amount = 2360, Discount = "0.056", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Retail", Customer = "Mercury Solar" }, new DataGridSale { Id = 1455, Product = "Eco Max", Amount = 2280, Discount = "0.088", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1456, Product = "SolarMax", Amount = 8430, Discount = "0.2533333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1457, Product = "Eco Max", Amount = 1980, Discount = "0.208", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "System Integrators" }, new DataGridSale { Id = 1458, Product = "Eco Max", Amount = 9340, Discount = "0.264", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Apollo Inc" }, new DataGridSale { Id = 1459, Product = "SolarMax", Amount = 4130, Discount = "0.1644444444444444444444444444", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1460, Product = "Eco Supreme", Amount = 1690, Discount = "0.155", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 1461, Product = "Eco Max", Amount = 1980, Discount = "0.208", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Market Eco" }, new DataGridSale { Id = 1462, Product = "Eco Max", Amount = 2230, Discount = "0.108", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1463, Product = "Eco Supreme", Amount = 3380, Discount = "0.31", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1464, Product = "Eco Max", Amount = 2290, Discount = "0.084", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1465, Product = "SolarOne", Amount = 1040, Discount = "0.3066666666666666666666666667", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1466, Product = "SolarMax", Amount = 6120, Discount = "0.28", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1467, Product = "SolarOne", Amount = 5830, Discount = "0.1133333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1468, Product = "EnviroCare", Amount = 4580, Discount = "0.3828571428571428571428571429", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1469, Product = "Eco Max", Amount = 4800, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "VARs", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1470, Product = "Eco Max", Amount = 4520, Discount = "0.192", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1471, Product = "EnviroCare", Amount = 5090, Discount = "0.0914285714285714285714285714", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1472, Product = "Eco Max", Amount = 9770, Discount = "0.092", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Resellers", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1473, Product = "Eco Supreme", Amount = 5360, Discount = "0.32", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1474, Product = "Eco Max", Amount = 4850, Discount = "0.06", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1475, Product = "Eco Supreme", Amount = 5640, Discount = "0.18", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 1476, Product = "Eco Max", Amount = 6830, Discount = "0.268", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1477, Product = "SolarMax", Amount = 4010, Discount = "0.2177777777777777777777777778", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "VARs", Customer = "Beacon Systems" }, new DataGridSale { Id = 1478, Product = "Eco Max", Amount = 4690, Discount = "0.124", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Telecom", Channel = "Consultants", Customer = "Beacon Systems" }, new DataGridSale { Id = 1479, Product = "Eco Supreme", Amount = 7810, Discount = "0.095", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1480, Product = "SolarOne", Amount = 5880, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Banking", Channel = "Direct", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1481, Product = "Eco Max", Amount = 2340, Discount = "0.064", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "VARs", Customer = "Global Services" }, new DataGridSale { Id = 1482, Product = "Eco Max", Amount = 6950, Discount = "0.22", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Telecom", Channel = "Retail", Customer = "Market Eco" }, new DataGridSale { Id = 1483, Product = "EnviroCare", Amount = 1560, Discount = "0.1085714285714285714285714286", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Columbia Solar" }, new DataGridSale { Id = 1484, Product = "SolarOne", Amount = 3850, Discount = "0.4333333333333333333333333333", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "VARs", Customer = "Smith & Co" }, new DataGridSale { Id = 1485, Product = "Eco Supreme", Amount = 5500, Discount = "0.25", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Health", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1486, Product = "SolarMax", Amount = 6520, Discount = "0.1022222222222222222222222222", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Columbia Solar" }, new DataGridSale { Id = 1487, Product = "Eco Supreme", Amount = 5310, Discount = "0.345", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 1488, Product = "SolarMax", Amount = 6280, Discount = "0.2088888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Smith & Co" }, new DataGridSale { Id = 1489, Product = "Eco Supreme", Amount = 1820, Discount = "0.09", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Direct", Customer = "Building Management Inc" }, new DataGridSale { Id = 1490, Product = "Eco Max", Amount = 7140, Discount = "0.144", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 1491, Product = "SolarMax", Amount = 3780, Discount = "0.32", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1492, Product = "Eco Supreme", Amount = 7260, Discount = "0.37", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Supply Warehous" }, new DataGridSale { Id = 1493, Product = "Eco Max", Amount = 9800, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Telecom", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1494, Product = "EnviroCare", Amount = 1360, Discount = "0.2228571428571428571428571429", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "Resellers", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1495, Product = "Eco Max", Amount = 7010, Discount = "0.196", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Health", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 1496, Product = "Eco Max", Amount = 6830, Discount = "0.268", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Health", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1497, Product = "Eco Supreme", Amount = 3300, Discount = "0.35", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Consultants", Customer = "Global Services" }, new DataGridSale { Id = 1498, Product = "SolarMax", Amount = 8350, Discount = "0.2888888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Health", Channel = "Consultants", Customer = "McCord Builders" }, new DataGridSale { Id = 1499, Product = "SolarMax", Amount = 6460, Discount = "0.1288888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1500, Product = "Eco Max", Amount = 6890, Discount = "0.244", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Telecom", Channel = "Resellers", Customer = "Market Eco" }, new DataGridSale { Id = 1501, Product = "SolarOne", Amount = 5880, Discount = "0.08", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1502, Product = "EnviroCare", Amount = 2820, Discount = "0.3885714285714285714285714286", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1503, Product = "Eco Supreme", Amount = 5370, Discount = "0.315", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Consultants", Customer = "Market Eco" }, new DataGridSale { Id = 1504, Product = "Eco Supreme", Amount = 7850, Discount = "0.075", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1505, Product = "Eco Max", Amount = 7380, Discount = "0.048", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Health", Channel = "Consultants", Customer = "Energy Systems" }, new DataGridSale { Id = 1506, Product = "Eco Max", Amount = 7110, Discount = "0.156", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Resellers", Customer = "Mercury Solar" }, new DataGridSale { Id = 1507, Product = "SolarMax", Amount = 1800, Discount = "0.2", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Banking", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 1508, Product = "Eco Max", Amount = 7270, Discount = "0.092", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Banking", Channel = "Direct", Customer = "Mercury Solar" }, new DataGridSale { Id = 1509, Product = "EnviroCare", Amount = 5060, Discount = "0.1085714285714285714285714286", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1510, Product = "Eco Max", Amount = 1830, Discount = "0.268", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Telecom", Channel = "Retail", Customer = "Building Management Inc" }, new DataGridSale { Id = 1511, Product = "Eco Supreme", Amount = 1680, Discount = "0.16", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Manufacturing", Channel = "Consultants", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1512, Product = "EnviroCare", Amount = 3340, Discount = "0.0914285714285714285714285714", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Resellers", Customer = "Supply Warehous" }, new DataGridSale { Id = 1513, Product = "SolarMax", Amount = 6280, Discount = "0.2088888888888888888888888889", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "Direct", Customer = "Get Solar Inc" }, new DataGridSale { Id = 1514, Product = "Eco Max", Amount = 4720, Discount = "0.112", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Direct", Customer = "Energy Systems" }, new DataGridSale { Id = 1515, Product = "SolarMax", Amount = 6290, Discount = "0.2044444444444444444444444444", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Arthur & Sons" }, new DataGridSale { Id = 1516, Product = "Eco Max", Amount = 2220, Discount = "0.112", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "Direct", Customer = "Smith & Co" }, new DataGridSale { Id = 1517, Product = "Eco Supreme", Amount = 1400, Discount = "0.3", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "Johnson & Assoc" }, new DataGridSale { Id = 1518, Product = "SolarMax", Amount = 6380, Discount = "0.1644444444444444444444444444", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Resellers", Customer = "Beacon Systems" }, new DataGridSale { Id = 1519, Product = "SolarOne", Amount = 2430, Discount = "0.38", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Consultants", Customer = "System Integrators" }, new DataGridSale { Id = 1520, Product = "Eco Max", Amount = 4410, Discount = "0.236", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Insurance", Channel = "Direct", Customer = "McCord Builders" }, new DataGridSale { Id = 1521, Product = "Eco Supreme", Amount = 7280, Discount = "0.36", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Environment Solar" }, new DataGridSale { Id = 1522, Product = "SolarOne", Amount = 4020, Discount = "0.32", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Health", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 1523, Product = "Eco Max", Amount = 6990, Discount = "0.204", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Retail", Customer = "Gemini Stores" }, new DataGridSale { Id = 1524, Product = "Eco Supreme", Amount = 3890, Discount = "0.055", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Banking", Channel = "Direct", Customer = "System Integrators" }, new DataGridSale { Id = 1525, Product = "Eco Supreme", Amount = 3720, Discount = "0.14", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Insurance", Channel = "Resellers", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1526, Product = "Eco Max", Amount = 9770, Discount = "0.092", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Insurance", Channel = "VARs", Customer = "Columbia Solar" }, new DataGridSale { Id = 1527, Product = "Eco Max", Amount = 7190, Discount = "0.124", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Mercury Solar" }, new DataGridSale { Id = 1528, Product = "Eco Max", Amount = 9900, Discount = "0.04", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "VARs", Customer = "Green Energy Inc" }, new DataGridSale { Id = 1529, Product = "SolarMax", Amount = 8360, Discount = "0.2844444444444444444444444444", SaleDate = "2024-05-15T00:00:00", Region = "Africa", Sector = "Health", Channel = "Retail", Customer = "Solar Warehouse" }, new DataGridSale { Id = 1530, Product = "EnviroCare", Amount = 2980, Discount = "0.2971428571428571428571428571", SaleDate = "2024-05-15T00:00:00", Region = "South America", Sector = "Insurance", Channel = "VARs", Customer = "Apollo Inc" }, new DataGridSale { Id = 1531, Product = "Eco Max", Amount = 2400, Discount = "0.04", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Health", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 1532, Product = "Eco Supreme", Amount = 1670, Discount = "0.165", SaleDate = "2024-05-15T00:00:00", Region = "North America", Sector = "Manufacturing", Channel = "Resellers", Customer = "Energy Systems" }, new DataGridSale { Id = 1533, Product = "SolarMax", Amount = 1750, Discount = "0.2222222222222222222222222222", SaleDate = "2024-05-15T00:00:00", Region = "Europe", Sector = "Insurance", Channel = "VARs", Customer = "Gemini Stores" }, new DataGridSale { Id = 1534, Product = "Eco Max", Amount = 1790, Discount = "0.284", SaleDate = "2024-05-15T00:00:00", Region = "Asia", Sector = "Banking", Channel = "Retail", Customer = "Health Plus Inc" }, new DataGridSale { Id = 1535, Product = "Eco Max", Amount = 2270, Discount = "0.092", SaleDate = "2024-05-15T00:00:00", Region = "Australia", Sector = "Insurance", Channel = "Direct", Customer = "Apollo Inc" } }; } }
.dx-datagrid .dx-data-row > td.bullet { padding-top: 0; padding-bottom: 0; }