15 lines
345 B
C#
15 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Zxd.Core.Domain.Dto.Dncmsbase;
|
|
|
|
namespace Zxd.Core.Domain.Impl
|
|
{
|
|
public interface IStatisticsDomain : IScopedDependency
|
|
{
|
|
Task<MonthAttentionDto> GetMonthAttentionData(string year, string month);
|
|
}
|
|
}
|