足力健后端,使用.netcore版本,合并1个项目使用

ICall_CallOutboundRepository.cs 449B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Common;
  4. using System.Model.Call;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace System.IRepositories.Call
  8. {
  9. public interface ICall_CallOutboundRepository : IRepository<T_Call_CallOutbound>
  10. {
  11. Task<int> GetCallNumber(string DeptCode, int teamid, DateTime dtime);
  12. Task<int> GetTotleCallNumber(string DeptCode, int teamid, DateTime dtime);
  13. }
  14. }