business expressions(二)
1,to give someone a heads up
= to inform someone about something important
("heads up") because they must lift their heads from their work to listen!)
I just want to give you a heads up that the CEO will be here tomorrow.
Manager:"Just a heads up about tomorrow:The meeting will start at 9 am".
I want to give you a heads up,I will not work tomorrow.
2,to give someone the lowdown(内幕,真相)
=to give someone the most important information about something.
I don't have time to listen to all the details.Just give me the lowdown!
Give me the lowdown on the new iphone.
3,to fill someone in
=to inform someone about something
Jane:"Mark,were you at the sales meeting yesterday?"
Mark:"NO."
Jane:"OK,I'll fill you in"
4,to drop someone a line
=to write a letter to someone
Please drop me a line with the prices.
I'll drop you a line to confirm the details.
5,to stay in touch to keep in touch
=to continue to communicate with someone.
"Goodbye! It was nice to see you again. Stay in touch!"
Keep in touch! Call me if you have any questions.
6,to keep someone posted to keep someone updated
=to regularly tell someone what is happening in an important situation.
Manager:"Jane,has the sustomer sent us his insurance claim?"
Jane:"NO,not yet."
Manager:"OK,please keep me posted."
7,to keep someone in the loop
=to regularly inform someone about something.
Manager:"You are in charge of the project but please keep me in the loop"
8,to give someone a call to give someone a ring
=to call someone(by telephone)
I gave you a ring but you didn't answer!
I'll give you a call when I arrive at the airport.
Give me a call when you get back from your trip.
9,to get back to someone
=to reply to someone
We will get back to you on this early next week.
Manager:"Has the customer got back to us?"
Mark:"Could I speak to Mr Jones please?"
Secretary:"I;m sorry but Mr Jones is in a meeting."
Mark:"OK,please ask him to get back to me."
10,to let someone know
=to inform someone about something.
Mark:"There's a conference in London tomorrow. Let me know if you would like to go."
Mark:"Are you working next week?"
Jane:"I'm not sure. My manager will let me know tomorrow."
Any questions please let me know.
=Any questions please fell free to contact me!
本文作者starof,因知识本身在变化,作者也在不断学习成长,文章内容也不定时更新,为避免误导读者,方便追根溯源,请诸位转载注明出处:http://www.cnblogs.com/starof/p/7266523.html有问题欢迎与我讨论,共同进步。
business expressions(二)的更多相关文章
- business expressions(一)
一. 1.24/7 24/7 :twenty four hours a day, seven days a week I work 24/7.——meaing i work all the time. ...
- ABAP绘图功能模块概观(转)
ABAP Graphics FM OverviewABAP绘图功能模块概观 此处仅将功能模块及范例程序列出(若要列出详细参数篇幅过大) 2 Main Graphics Demo Program: GR ...
- 数据仓库专题(23):总线矩阵的另类应用-Drill Down into a More Detailed Bus Matrix
一.前言 Many of you are already familiar with the data warehouse bus architecture and matrix given thei ...
- Mongodb 语法,update,insert,delete,find
---恢复内容开始--- db.Users.update({OrganizationCode:"Global"},{$set:{OrganizationCode:"Fre ...
- java jfinal + ajaxfileupload.js 上传
功能上传 需求:同时上传多张图片 前端:jquery.ajaxfileupload.js 后端:jfinal upload.htm <html> <body> <div ...
- Django中的F和Q函数
内容简介: 介绍Django中的F和Q作用以及使用方法 一.F介绍 作用:操作数据表中的某列值,F()允许Django在未实际链接数据的情况下具有对数据库字段的值的引用,不用获取对象放在内存中再对字段 ...
- step_by_step_ABP规约模式
一段时间没有在github 上浏览ABP项目,几天前看到ABP新增规约模式,开始了解并学习文档 记录一下 Introduction 介绍 Specification pattern is a pa ...
- ABP框架系列之四十八:(Specifications-规范)
Introduction Specification pattern is a particular software design pattern, whereby business rules c ...
- [django]django查询最佳实战
from django.db.models import Max, Min, Sum, Avg, Count, Q, F Django中的F和Q函数 一.F介绍 作用:操作数据表中的某列值,F()允许 ...
随机推荐
- yum仓库详细解读
Yum:Yellowdog Updater,Modified的简称,起初由yellow dog发行版的开发者Terra Soft研发,用Python编写,后经杜克大学的Linux@Duke开发团队进行 ...
- ARM-LINUX自动采集温湿度传感器数据
开机root自动登录 如果想在超级终端输入回车,登录后执行,则可以在/etc/profile中加入命令: 如果实现开机自动登录,在/etc/inittab中修改,每个开发板修改的方式可能都不同. ht ...
- Redis实现数据库读写分离
Redis简介 Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API.从2010年3月15日起,Redis的开发工作 ...
- 约瑟夫环-循环队列算法(曾微软,google笔试题)
这也是我们聚会时常常做的游戏之一. 算法思路: 此处我使用循环链表模拟人围城一圈,每一个结点代表一个人.链表是一个有序链表,链表结点数据域是一个整型,代表人的序号.出局等同于链表删除元素,每次出局后重 ...
- Ubuntu16.04+cuda9.0+matlab+opencv3.3+caffe服务器配置(问题汇总)
Ubuntu16.04+cuda9.0+matlab+opencv3.3+caffe服务器配置(附遇到的错误和解决方法) 1.具体安装前需要的依赖包: ubuntu dependency: sudo ...
- mysql常用基础操作语法(八)~~多表查询合并结果和内连接查询【命令行模式】
1.使用union和union all合并两个查询结果:select 字段名 from tablename1 union select 字段名 from tablename2: 注意这个操作必须保证两 ...
- SetCooperativeLevel函数介绍(设置协作等级)
函数声明 function SetCooperativeLevel(hWnd: HWND; dwFlags: DWORD): HResult; stdcall; 参数介绍 hWnd Di ...
- PHP学习笔记-POST
$_POST 描述通过http POST方式提交的数据都会封装到$_POST数组中 有些数据的提交必须使用post 比如上传文件 Post get提交 的区别 安全性 数据传输大小 浏览器限制文本大小 ...
- json_encode处理json数据中文乱码
今天使用json_encode 把一个数组转换成json数据,echo处理的时候,显示为null.去查了php手册. 该函数只能接受 UTF-8 编码的数据. 在网上搜了下,找到了解决方法. < ...
- python装饰器理解
1.装饰器的作用 在不修改被装饰对象的源代码以及调用方式的前提下为被装饰对象添加新功能 原则: 1.不修改被装饰对象的源代码2.不修改被装饰对象的调用方式 目标: 为被装饰对象添加新功能 2.装饰器的 ...