예제 #1
0
파일: Razor.cs 프로젝트: tjlcast/SmartDb
 public void InsertInToDb <T>(ref T item)
     where T : class, new()
 {
     item = SmartDbEntityAgentFactory.Of(item);
     SmartDbBus.PlanToWriteToDb(item, DbActionType.Insert);
     //return item;
 }
예제 #2
0
파일: Razor.cs 프로젝트: tjlcast/SmartDb
 public void DeleteFromDb <T>(T item)
     where T : class, new()
 {
     SmartDbBus.PlanToWriteToDb(item, DbActionType.Delete);
 }
예제 #3
0
 private void WriteToDb(T item, DbActionType type)
 {
     SmartDbBus.PlanToWriteToDb(item, type);
 }