Пример #1
0
 public static void Responsibles()
 {
     GenericCollection.responsibles.Clear();
     e = Responsible.ListOnline("SELECT * FROM responsible");
     ProcessWindow._Form1.FeedBack("Downloading Responsible... " + e.Count);
     foreach (var h in e)
     {
         Responsible p = new Responsible(h.Id, h.UserID, h.CustomerID, DateTime.Now.ToString("dd-MM-yyyy H:m:s"), "true", Helper.CompanyID);
         GenericCollection.responsibles.Add(p);
     }
     ProcessWindow._Form1.FeedBack("Downloading Responsibility  Complete");
 }