Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

QuartzCoreFactory.cs 306 B

2 år sedan
12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HKCardOUT.QuartzUtil
  7. {
  8. public class QuartzCoreFactory
  9. {
  10. public static IQuartzCore QuartzCore()
  11. {
  12. return new QuartzCore();
  13. }
  14. }
  15. }