public LoginDto GetById(object Id) { var Data = _loginServices.GetById(Id); var ReData = Mapper.Map <LoginDto>(Data); return(ReData); }