This commit is contained in:
mmrbnjd
2024-06-23 19:56:05 +03:30
parent 279ed3b843
commit 638baf02c8
4 changed files with 53 additions and 32 deletions

View File

@@ -19,6 +19,7 @@ namespace Shared.DTOs
public List<LastActivitySevice> lastActivitiesSevices { get; set; }=new List<LastActivitySevice>();
public List<IdNameByCount<int>>? MostInvoicedProduct { get; set; }=new List<IdNameByCount<int>>();
public List<IdNameByCount<int>>? MostInvoicedCustomer { get; set; } = new List<IdNameByCount<int>>();
public List<IdNameByCount<int>> ForSaleChart { get; set; } = new List<IdNameByCount<int>>();
public decimal? SaleInMonth { get; set; } = 0;
public decimal? Salepercent { get; set; } = 0;
}