Пример #1
0
 public async Task Execute(IJobExecutionContext context)
 {
     if ((int.Parse(DateTime.Now.Minute.ToString().Substring(DateTime.Now.Minute.ToString().Length - 1, 1)) == 0 && up) || (int.Parse(DateTime.Now.Minute.ToString().Substring(DateTime.Now.Minute.ToString().Length - 1, 1)) == 5 && up))
     {
         up = false;
         RequestMrr    req  = new RequestMrr();
         RequestMinear reqm = new RequestMinear();
         RequestSp     sp   = new RequestSp();
         RequestRate   rate = new RequestRate();
         req.Upload();
         sp.Upload();
         rate.Upload();
         reqm.Upload();
         DeleteDouble();
     }
     else if ((int.Parse(DateTime.Now.Minute.ToString().Substring(DateTime.Now.Minute.ToString().Length - 1, 1)) != 0 && !up) && (int.Parse(DateTime.Now.Minute.ToString().Substring(DateTime.Now.Minute.ToString().Length - 1, 1)) != 5))
     {
         up = true;
     }
 }