// GET: ProductMaster
        public async Task <ActionResult> Index()
        {
            var result = await giProductMasterDA.GetAllProductMasterForViews();

            return(View(result));
        }