OfilmRzSyncService.cs 409 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace DllUfpDal
  6. {
  7. public class OfilmRzSyncService
  8. {
  9. /// <summary>
  10. /// 同步员工信息
  11. /// </summary>
  12. /// <returns></returns>
  13. public async Task Sync()
  14. {
  15. var dal = new OfRzDataSyncDal();
  16. await dal.Sync();
  17. }
  18. }
  19. }