示例#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);
 }