예제 #1
0
        public IList<UnitProductLogistic> Select(UnitProductLogistic data)
        {

            IList<UnitProductLogistic> datos = new List<UnitProductLogistic>();
            datos = GetHsql(data).List<UnitProductLogistic>();
            if (!Factory.IsTransactional)
                Factory.Commit();
            return datos;

        }
예제 #2
0
        public override Boolean Equals(object obj)
        {
            if ((obj == null) || (obj.GetType() != this.GetType()))
            {
                return(false);
            }
            UnitProductLogistic castObj = (UnitProductLogistic)obj;

            return((castObj != null) &&
                   (this.RowID == castObj.RowID));
        }
예제 #3
0
 public void DeleteUnitProductLogistic(UnitProductLogistic data) { Factory.DaoUnitProductLogistic().Delete(data); }
예제 #4
0
 public void UpdateUnitProductLogistic(UnitProductLogistic data) { Factory.DaoUnitProductLogistic().Update(data); }
예제 #5
0
 public UnitProductLogistic SaveUnitProductLogistic(UnitProductLogistic data) { return Factory.DaoUnitProductLogistic().Save(data); }
예제 #6
0
 public IList<UnitProductLogistic> GetUnitProductLogistic(UnitProductLogistic data) { return Factory.DaoUnitProductLogistic().Select(data); }
예제 #7
0
 public UnitProductLogistic SelectById(UnitProductLogistic data)
 {
     return (UnitProductLogistic)base.SelectById(data);
 }
예제 #8
0
 public Boolean Delete(UnitProductLogistic data)
 {
     return base.Delete(data);
 }
예제 #9
0
 public Boolean Update(UnitProductLogistic data)
 {
     return base.Update(data);
 }
예제 #10
0
 public UnitProductLogistic Save(UnitProductLogistic data)
 {
     return (UnitProductLogistic)base.Save(data);
 }