コード例 #1
0
        public int Insert(OfficeLocation changedOfficeLocation)
        {
            var officeDto = changedOfficeLocation.ExtractDto();
            var id        = _officeDataTableGateway.Insert(officeDto);

            return(id);
        }
コード例 #2
0
        public void Update(OfficeLocation changedOfficeLocation)
        {
            var officeDto = changedOfficeLocation.ExtractDto();

            _officeDataTableGateway.Update(officeDto);
        }