using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OASystem.Domain.ViewModels.Statistics
{
    public class MarketingSalesView
    {
    }

    public class MarketingSalesGroupList {
        public int RowNumber { get; set; }
        public int Id { get; set; }
        public string TeamName { get; set; }
        public string ClientUnit { get; set; }
        public string ClientName { get; set; }
        public int VisitPNumber { get; set; } 
        public DateTime VisitDate { get; set; }
        public DateTime VisitEndDate { get; set; }
        public decimal GroupSales { get; set; }
        public DateTime CollectionDays { get; set; }
        public string GroupPickupUser { get; set; }
    }

    public class  MarketingSalesGroupStatisticsView {
        public string Name { get; set; }
        public int Count { get; set; }
    }

    public class MarketingSalesOrderRankingView {
        public int RowNumber { get; set; }
        public string UserName { get; set; }
        public int Count { get; set; }
    }
}