public IDataResult <Users> GetById(int userid)
 {
     return(new SuccessDataResult <Users>(_Iusersdal.Get(u => u.UserId == userid)));
 }