Ejemplo n.º 1
0
        //
        // GET: /ReferralRecord/
        public ActionResult Index(int?id = null, int?companyCategoryTypeId = null)
        {
            ReferralRecordVm input = new ReferralRecordVm();

            //  input.companyCategoryType = companyCategoryTypeManager.getCompanyCategories();
            input.clientId = id.GetValueOrDefault();
            input.companyCategoryTypeId = companyCategoryTypeId.GetValueOrDefault();
            return(View(input));
        }
Ejemplo n.º 2
0
 public ActionResult Index(ReferralRecordVm input, int?id = null)
 {
     // input.companyCategoryType = companyCategoryTypeManager.getCompanyCategories();
     return(View(input));
 }