| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Common;
- using System.Model.Call;
- using System.Text;
- using System.Threading.Tasks;
- namespace System.IRepositories.Call
- {
-
- public interface ICall_CallOutboundRepository : IRepository<T_Call_CallOutbound>
- {
- Task<int> GetCallNumber(string DeptCode, int teamid, DateTime dtime);
- Task<int> GetTotleCallNumber(string DeptCode, int teamid, DateTime dtime);
- }
- }
|