public void AddTotblGoodsTypes(tblGoodsType tblGoodsType)
 {
     AddObject("tblGoodsTypes", tblGoodsType);
 }
 public static tblGoodsType CreatetblGoodsType(int typeId, string branchId)
 {
     tblGoodsType tblGoodsType = new tblGoodsType();
     tblGoodsType.TypeId = typeId;
     tblGoodsType.BranchId = branchId;
     return tblGoodsType;
 }