示例#1
0
 public IHttpActionResult empresaCreate(Empresa empresa)
 {
     try
     {
         EmpresaBLL bll = new EmpresaBLL();
         return(Ok(bll.createEmpresa(empresa)));
     }catch (Exception ex)
     {
         UtilBLL util = new UtilBLL();
         return(Ok(util.getRetornoException(ex)));
     }
 }