public Result InsertLoginInfo(BrandLogin logInfo) { var result = new Result(); try { result.IsSuccess = _ibrand.InsertLoginInfo(logInfo); } catch (Exception ex) { throw ex; } return(result); }