public bool Insert(Empleado t) { Empleado jefe = jefeRepository.FindById(t.CJefe.CEmpleado); t.CJefe = jefe; Rol rol = rolReposotory.FindById(t.CRol.CRol); t.CRol = rol; return(empleadorepo.Insert(t)); }
public Rol FindById(int?id) { return(rolRepo.FindById(id)); }
public Rol FindById(int?id) { return(RolRepository.FindById(id)); }