예제 #1
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static RemoveResult_I <T> RemoveAll <T>()
     where T : Poco_I
 {
     return(XLogicContainers.RemoveAll <T>());
 }
예제 #2
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static UpdateResult_I <T> Update <T>(T objectToUpdate)
     where T : Poco_I
 {
     return(XLogicContainers.Update <T>(objectToUpdate));
 }
예제 #3
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static RemoveResult_I <T> RemoveById <T>(long id)
     where T : Poco_I
 {
     return(XLogicContainers.RemoveById <T>(id));
 }
예제 #4
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static RemoveResult_I <T> Remove <T>(T objectToRemove)
     where T : Poco_I
 {
     return(XLogicContainers.Remove <T>(objectToRemove));
 }
예제 #5
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static GetCollectionResult_I <T> GetAll <T>()
     where T : Poco_I
 {
     return(XLogicContainers.GetAll <T>());
 }
예제 #6
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static GetResult_I <T> GetById <T>(long id)
     where T : Poco_I
 {
     return(XLogicContainers.GetById <T>(id));
 }
예제 #7
0
파일: XLogic.cs 프로젝트: E01D/Base
 public static void Add <T>(T objectToAdd)
     where T : Poco_I
 {
     XLogicContainers.Add(objectToAdd);
 }