Exemplo n.º 1
0
 public IList <BoxHeadline> GetBoxesOfPallet(string palletId, int maxRows)
 {
     if (string.IsNullOrWhiteSpace(palletId))
     {
         throw new ArgumentNullException("palletId");
     }
     return(SharedRepository.GetBoxes(_db, null, palletId, maxRows));
 }
Exemplo n.º 2
0
 internal IList <BoxHeadline> GetRecentPitchedBoxList(int maxRows)
 {
     return(SharedRepository.GetBoxes(_db, null, string.Empty, maxRows));
 }
Exemplo n.º 3
0
 public IList <BoxHeadline> GetBoxesOfPickslip(long pickslipId, int maxRows)
 {
     Contract.Assert(_db != null);
     return(SharedRepository.GetBoxes(_db, pickslipId, null, maxRows));
 }
Exemplo n.º 4
0
 internal IList <BoxHeadline> GetBoxes(long pickslipId, int maxRows)
 {
     return(SharedRepository.GetBoxes(_db, pickslipId, null, maxRows));
 }