Beispiel #1
0
 public static RemoveResult_I <T> RemoveAll <T>()
     where T : Poco_I
 {
     return(XLogicContainers.RemoveAll <T>());
 }
Beispiel #2
0
 public static UpdateResult_I <T> Update <T>(T objectToUpdate)
     where T : Poco_I
 {
     return(XLogicContainers.Update <T>(objectToUpdate));
 }
Beispiel #3
0
 public static RemoveResult_I <T> RemoveById <T>(long id)
     where T : Poco_I
 {
     return(XLogicContainers.RemoveById <T>(id));
 }
Beispiel #4
0
 public static RemoveResult_I <T> Remove <T>(T objectToRemove)
     where T : Poco_I
 {
     return(XLogicContainers.Remove <T>(objectToRemove));
 }
Beispiel #5
0
 public static GetCollectionResult_I <T> GetAll <T>()
     where T : Poco_I
 {
     return(XLogicContainers.GetAll <T>());
 }
Beispiel #6
0
 public static GetResult_I <T> GetById <T>(long id)
     where T : Poco_I
 {
     return(XLogicContainers.GetById <T>(id));
 }
Beispiel #7
0
 public static void Add <T>(T objectToAdd)
     where T : Poco_I
 {
     XLogicContainers.Add(objectToAdd);
 }