This commit is contained in:
mmrbnjd
2024-06-20 18:22:34 +03:30
parent 2120c4d848
commit 309fac81d3
10 changed files with 258 additions and 212 deletions

View File

@@ -18,6 +18,9 @@ namespace Shared.DTOs
public List<AlertDTO> Notifications { get; set; } = new List<AlertDTO>();
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 decimal? SaleInMonth { get; set; } = 0;
public decimal? Salepercent { get; set; } = 0;
}
public class ServiceInDashBoardDTO
{