Example #1
0
 public static void removeAllLiveData()
 {
     DLiveDataManager.removeAllLiveData();
 }
Example #2
0
 public static void ChangeStatus(string idChild, General.Statuses status)
 {
     DLiveDataManager.ChangeStatus(idChild, status);
 }
Example #3
0
 public static List <General.Attendance> copyToAttendace(int idKinderGarden)
 {
     return(DLiveDataManager.copyToAttendace(idKinderGarden));
 }
Example #4
0
 public static void copyFutureToLivaData()
 {
     DLiveDataManager.CopyFutureToLiveData();
 }
Example #5
0
 public static List <CLiveData> LDIsNonPrestnt()
 {
     return(DLiveDataManager.selectLiveIsNonPresent());
 }
Example #6
0
 public static CLiveData updateLiveData(CLiveData cl)
 {
     return(DLiveDataManager.updateLiveData(cl));
 }
Example #7
0
 public static void copyChildrenToLiveData()
 {
     DLiveDataManager.CopyChildrenToLiveData();
 }
Example #8
0
 public static List <CLiveData> selectLiveDataByKinderGardenCode(int kinderGardenCode)
 {
     return(DLiveDataManager.selectLiveDataByKinderGardenCode(kinderGardenCode));
 }
Example #9
0
 public static CLiveData selectLiveDataByIdChild(string id)
 {
     return(DLiveDataManager.selectLiveDataByIdChild(id));
 }
Example #10
0
 public static List <CLiveData> selectAllLiveData()
 {
     return(DLiveDataManager.selectAllLiveData());
 }
Example #11
0
 public static void removeLiveData(CLiveData cl)
 {
     DLiveDataManager.removeLiveData(cl);
 }
Example #12
0
 public static void addLiveData(CLiveData cl)
 {
     DLiveDataManager.addLiveData(cl);
 }