Example #1
0
 public ActionResult AddCompanyProfile(string profile)
 {
     if (companyRespository.AddCompanyProfile(profile) && UnitOfWork.Save() == 1)
     {
         return(Content("{success:true}"));
     }
     return(Content("{success:false}"));
 }