using BBWY.Client.Models; using BBWY.Common.Http; using BBWY.Common.Models; using System.Net.Http; namespace BBWY.Client.APIServices { public class StatisticsService : BaseApiService, IDenpendency { public StatisticsService(RestApiService restApiService, GlobalContext globalContext) : base(restApiService, globalContext) { } /// /// 今日业绩统计 /// /// public ApiResponse GetTodayAchievementStatistics() { return SendRequest(globalContext.BBYWApiHost, "Api/Statistics/GetTodayAchievementStatistics", new { ShopId = globalContext.User.Shop.ShopId }, null, HttpMethod.Post); } } }