예제 #1
0
 public FBAPickDetailController()
 {
     _context  = new ApplicationDbContext();
     _picker   = new FBAInventoryPicker();
     _userName = HttpContext.Current.User.Identity.Name.Split('@')[0] == "" ? (HttpContext.Current.Request.Headers.Get("AppUser") == null ? "" : HttpContext.Current.Request.Headers.Get("AppUser")) : HttpContext.Current.User.Identity.Name.Split('@')[0];
 }
 public FBAInventoryController()
 {
     _context = new ApplicationDbContext();
     _picker  = new FBAInventoryPicker();
 }
 public FBAShipmentAPIController()
 {
     _context   = new ApplicationDbContext();
     _validator = new FBAexAPIValidator();
     _picker    = new FBAInventoryPicker();
 }