Esempio n. 1
0
        public ActionResult DispatchOtherListGrid(string otherDispatchAllocationID)
        {
            BLL.UserProfile user = _userProfileService.GetUser(User.Identity.Name);
            //TODO cascade using allocation id
            List <DispatchModelModelDto> otherDispatchs = _dispatchService.ByHubIdAndOtherAllocationIDetached(user.DefaultHub.HubID, Guid.Parse(otherDispatchAllocationID));

            return(View(new GridModel(otherDispatchs)));
        }