public void Create(Vista vista) { try { var c = crudVista.Retrieve <Rol>(vista); if (c != null) { throw new BussinessException(14); } crudVista.Create(vista); } catch (Exception ex) { ExceptionManager.GetInstance().Process(ex); } }
public Vista RetrieveById(Vista v) { return(crud.Retrieve <Vista> (v)); }