Example #1
0
 public static void Save(tb_LdleTimeslotEntity obj)
 {
     if (obj!=null)
     {
         obj.Save();
     }
 }
Example #2
0
 /// <summary>根据主键获取一个实体</summary>
 public static tb_LdleTimeslotEntity RetrieveAtb_LdleTimeslotEntity(int id)
 {
     tb_LdleTimeslotEntity obj=new tb_LdleTimeslotEntity();
     obj.id=id;
     obj.Retrieve();
     if (obj.IsPersistent)
     {
         return obj;
     }
     else
     {
         return null;
     }
 }