Ejemplo n.º 1
0
 /// <summary>
 /// Used to store destination area of intransit cartons until they are received
 /// </summary>
 //private readonly HttpSessionStateBase _session;
 public ReceivingService(RequestContext ctx)
 {
     _repos = new ReceivingRepository(ctx);
     _trace = ctx.HttpContext.Trace;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// For unit tests.
 /// </summary>
 public ReceivingService(ReceivingRepository repos)
 {
     _repos = repos;
 }