public double TotalSales(DateTime initial, DateTime final)
 {
     return(Sellers.Sum(seller => seller.TotalSales(initial, final)));
 }