public static IList <LOT_LotNumber> GetListByProduct(int Product, DateTime BeginProductionDate, DateTime EndProductionDate) { LOT_LotNumberDAL dal = (LOT_LotNumberDAL)DataAccess.CreateObject(DALClassName); return(dal.GetListByProduct(Product, BeginProductionDate, EndProductionDate)); }
public static IList <LOT_LotNumber> GetListByProduct(int Product) { LOT_LotNumberDAL dal = (LOT_LotNumberDAL)DataAccess.CreateObject(DALClassName); return(dal.GetListByProduct(Product)); }
public LOT_LotNumberBLL(int id) : base(DALClassName) { _dal = (LOT_LotNumberDAL)_DAL; FillModel(id); }
public LOT_LotNumberBLL(int id, bool bycache) : base(DALClassName) { _dal = (LOT_LotNumberDAL)_DAL; FillModel(id, bycache); }
///<summary> ///LOT_LotNumberBLL ///</summary> public LOT_LotNumberBLL() : base(DALClassName) { _dal = (LOT_LotNumberDAL)_DAL; _m = new LOT_LotNumber(); }