Beispiel #1
0
        public async System.Threading.Tasks.Task <ActionResult> ListSale()
        {
            var vm = new ListSaleViewModel();
            await vm.Fill(CargarDatosContext());

            return(View(vm));
        }
Beispiel #2
0
        // GET: Sale
        public ActionResult ListSale(Int32?p)
        {
            var vm = new ListSaleViewModel();

            vm.Fill(CargarDatosContext(), p);
            return(View(vm));
        }
Beispiel #3
0
        public ListSalePage(Block block, int floor)
        {
            InitializeComponent();

            BindingContext = new ListSaleViewModel(Navigation, block, floor);

            RentButton.CommandParameter = typeof(FormAppPage);
            SellButton.CommandParameter = typeof(FormAppSalePage);
            BuyButton.CommandParameter  = typeof(FormAppBuyPage);
            InfoButton.CommandParameter = typeof(AssignmentRightUsePage);
        }