1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- namespace DllUfpDal
- {
- public class OfilmRzSyncService
- {
- /// <summary>
- /// 同步员工信息
- /// </summary>
- /// <returns></returns>
- public async Task Sync()
- {
- var dal = new OfRzDataSyncDal();
- await dal.Sync();
- }
- }
- }
|