Ejemplo n.º 1
0
        public ActionResult ReceiveOtherInst(int Plotid, string Plot_Code, string Block, string Phase_Code, int Custid, float Balance)
        {
            ReceiveInstallent_Details rc = new ReceiveInstallent_Details
            {
                Block       = Block,
                Customer_Id = Custid,
                Phase       = Phase_Code,
                PlotCode    = Plot_Code,
                Plotid      = Plotid,
                Balance     = Balance
            };

            return(PartialView(rc));
        }
Ejemplo n.º 2
0
        public ActionResult ReceiveInst(int Plotid, string Plot_Code, string Block, string Phase_Code, float Amount_TC, string Currency, float Amount_LC, float Exchange_rate, int InstId, int Custid, float Balance)
        {
            ReceiveInstallent_Details rc = new ReceiveInstallent_Details
            {
                Amount_LC     = Amount_LC,
                Amount_TC     = Amount_TC,
                Block         = Block,
                Currency      = Currency,
                Customer_Id   = Custid,
                Exchange_Rate = Exchange_rate,
                Phase         = Phase_Code,
                PlotCode      = Plot_Code,
                Plotid        = Plotid,
                Balance       = Balance,
                Instid        = InstId
            };

            return(PartialView(rc));
        }