コード例 #1
0
ファイル: DepartmentController.cs プロジェクト: VijayMVC/api
        public async Task <IHttpActionResult> GetDepartment(int clientId, int departmentId)
        {
            var userId     = GetUserId();
            var department = await _departmentManager.GetAsync(departmentId, clientId, userId);

            return(Ok(department));
        }
コード例 #2
0
 public async Task <IActionResult> GetAsync(int id)
 {
     return(Ok(
                ServiceResponseHelper
                .GetSuccessResponse(
                    await
                    _manager
                    .GetAsync(id)
                    )
                ));
 }