public ExportFormController()
 {
     _objCurrency   = new DalSysCurrency();
     _unit          = new UnitOfWork();
     _validationMsg = new ValidationMsg();
     _dalExportForm = new DalExportForm();
 }
 public CommercialInvoiceController()
 {
     _objCurrency          = new DalSysCurrency();
     _unit                 = new UnitOfWork();
     _validationMsg        = new ValidationMsg();
     _dalCommercialInvoice = new DalCommercialInvoice();
 }
 public FreightBillDocController()
 {
     _unit                 = new UnitOfWork();
     _objCurrency          = new DalSysCurrency();
     _dalExpFreightBillDoc = new DalExpFreightBillDoc();
     _validationMsg        = new ValidationMsg();
 }
Beispiel #4
0
 public ChemLocalPurcBillEntController()
 {
     _chemLocalPurcBillEnt = new DalPrqChemLocalPurcBillEnt();
     _objCurrency          = new DalSysCurrency();
     _unit          = new UnitOfWork();
     _validationMsg = new ValidationMsg();
     _context       = new BLC_DEVEntities();
 }
Beispiel #5
0
        public ActionResult GetAllActiveCurrency()
        {
            DalSysCurrency objSource = new DalSysCurrency();

            var allData = objSource.GetAllActiveCurrency();

            return(Json(allData, JsonRequestBehavior.AllowGet));
        }
Beispiel #6
0
 public BuyerPurcOrderController()
 {
     _unit             = new UnitOfWork();
     _context          = new BLC_DEVEntities();
     _objCurrency      = new DalSysCurrency();
     _validationMsg    = new ValidationMsg();
     _dalSlsBuyerOrder = new DalSlsBuyerOrder();
 }
        public ActionResult BankVoucher()
        {
            DalSysCurrency objCurrency = new DalSysCurrency();

            ViewBag.CurrencyList = objCurrency.GetAllActiveCurrency();

            ViewBag.formTiltle = "Bank Voucher";
            return(View());
        }
        public ActionResult ProformaInvoice()
        {
            DalSysCurrency objCurrency = new DalSysCurrency();



            ViewBag.formTiltle   = "PI/Indent";
            ViewBag.CurrencyList = objCurrency.GetAllActiveCurrency();
            //ViewBag.CountryList = objCountry.GetAll();
            //ViewBag.BeneficiaryBankList = objBranch.GetBeneficiaryAdvisingBankList();
            //ViewBag.AdvisingBankList = objBranch.GetBeneficiaryAdvisingBankList();
            //ViewBag.PortList = objPort.GetAll();
            return(View());
        }
        public ActionResult ExportPI()
        {
            DalSysCurrency objCurrency = new DalSysCurrency();
            DalSysCountry  objCountry  = new DalSysCountry();
            DalSysBranch   objBranch   = new DalSysBranch();
            DalSysPort     objPort     = new DalSysPort();

            ViewBag.formTiltle      = "Proforma Invoice/Contract";
            ViewBag.CurrencyList    = objCurrency.GetAllActiveCurrency();
            ViewBag.CountryList     = objCountry.GetAll();
            ViewBag.BuyerBank       = objBranch.GetCategoryTypeWiseBranchNameWithBank("BNK", "BYR");
            ViewBag.BeneficiaryBank = objBranch.GetCategoryTypeWiseBranchNameWithBank("BNK", "SLR");
            ViewBag.PortList        = objPort.GetAll();
            return(View());
        }
 public SupplierBillEntryController()
 {
     _validationMsg             = new ValidationMsg();
     _dalPrqPurchaseChallan     = new DalPrqPurchaseChallan();
     _dalPrqSupplierBill        = new DalPrqSupplierBill();
     _dalPrqSupplierBillItem    = new DalPrqSupplierBillItem();
     _dalPrqSupplierBillChallan = new DalPrqSupplierBillChallan();
     _dalSysCurrency            = new DalSysCurrency();
     _dalSysUnit                = new DalSysUnit();
     _dalSysSize                = new DalSysSize();
     _dalSysSupplier            = new DalSysSupplier();
     _dalPrqPurchaseChallanItem = new DalPrqPurchaseChallanItem();
     _objPurchase               = new DalPrqPurchase();
     _unit    = new UnitOfWork();
     _context = new BLC_DEVEntities();
 }
Beispiel #11
0
 public CurrencyController()
 {
     _vmMsg          = new ValidationMsg();
     _dalSysCurrency = new DalSysCurrency();
 }